redux fixes #7400

Merged
jessopb merged 1 commit from redux-fixes-1/4/22 into master 2022-01-04 19:46:55 +01:00
3 changed files with 3 additions and 2 deletions

View file

@ -251,6 +251,7 @@ const Header = (props: Props) => {
aria-label={__('Home')}
className="header__navigation-item header__navigation-item--lbry"
onClick={() => {
// here use state.router.location.pathname
if (history.location.pathname === '/') window.location.reload();
}}
// @if TARGET='app'

View file

@ -6,7 +6,7 @@ import ModalConfirmTransaction from './view';
import { selectActiveChannelClaim, selectIncognito } from 'redux/selectors/app';
const select = (state, props) => ({
claim: selectClaimForUri(state, props.destination)(state),
claim: selectClaimForUri(state, props.destination),
activeChannelClaim: selectActiveChannelClaim(state),
incognito: selectIncognito(state),
});

View file

@ -221,7 +221,7 @@ export function doPlayUri(
export function savePosition(uri: string, position: number) {
return (dispatch: Dispatch, getState: () => any) => {
const state = getState();
const claim = selectClaimForUri(state, uri)(state);
const claim = selectClaimForUri(state, uri);
const { claim_id: claimId, txid, nout } = claim;
const outpoint = `${txid}:${nout}`;