Fix build expiration reporting
This commit is contained in:
parent
1fbc1079c9
commit
a5a6b74f98
2 changed files with 22 additions and 9 deletions
|
@ -193,7 +193,9 @@ export const getHasStoryViewReceiptSetting = createSelector(
|
|||
export const getRemoteBuildExpiration = createSelector(
|
||||
getItems,
|
||||
(state: ItemsStateType): number | undefined =>
|
||||
Number(state.remoteBuildExpiration)
|
||||
state.remoteBuildExpiration === undefined
|
||||
? undefined
|
||||
: Number(state.remoteBuildExpiration)
|
||||
);
|
||||
|
||||
export const getAutoDownloadUpdate = createSelector(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue