Username and username link integrity check
This commit is contained in:
parent
1be90fff3d
commit
3664063d71
26 changed files with 636 additions and 35 deletions
|
@ -93,6 +93,16 @@ export const getHasCompletedUsernameLinkOnboarding = createSelector(
|
|||
Boolean(state.hasCompletedUsernameLinkOnboarding)
|
||||
);
|
||||
|
||||
export const getUsernameCorrupted = createSelector(
|
||||
getItems,
|
||||
(state: ItemsStateType): boolean => Boolean(state.usernameCorrupted)
|
||||
);
|
||||
|
||||
export const getUsernameLinkCorrupted = createSelector(
|
||||
getItems,
|
||||
(state: ItemsStateType): boolean => Boolean(state.usernameLinkCorrupted)
|
||||
);
|
||||
|
||||
export const getUsernameLinkColor = createSelector(
|
||||
getItems,
|
||||
(state: ItemsStateType): number | undefined => state.usernameLinkColor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue