Fix typos.
This commit is contained in:
parent
b7d685b4ec
commit
3058dbb4a6
2 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ import {
|
|||
selectAutoUpdateDownloaded,
|
||||
selectModal,
|
||||
selectActiveChannelClaim,
|
||||
selectIsUpdateModelDisplayed,
|
||||
selectIsUpdateModalDisplayed,
|
||||
} from 'redux/selectors/app';
|
||||
import { doGetWalletSyncPreference, doSetLanguage } from 'redux/actions/settings';
|
||||
import { doSyncLoop } from 'redux/actions/sync';
|
||||
|
@ -51,7 +51,7 @@ const select = (state) => ({
|
|||
myChannelUrls: selectMyChannelUrls(state),
|
||||
myChannelClaimIds: selectMyChannelClaimIds(state),
|
||||
subscriptions: selectSubscriptions(state),
|
||||
isUpdateModalDisplayed: selectIsUpdateModelDisplayed(state),
|
||||
isUpdateModalDisplayed: selectIsUpdateModalDisplayed(state),
|
||||
});
|
||||
|
||||
const perform = (dispatch) => ({
|
||||
|
|
|
@ -52,7 +52,7 @@ export const selectAutoUpdateDownloaded = createSelector(selectState, (state) =>
|
|||
|
||||
export const selectAutoUpdateDeclined = createSelector(selectState, (state) => state.autoUpdateDeclined);
|
||||
|
||||
export const selectIsUpdateModelDisplayed = createSelector(selectState, (state) => {
|
||||
export const selectIsUpdateModalDisplayed = createSelector(selectState, (state) => {
|
||||
return state.modal === AUTO_UPDATE_DOWNLOADED;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue