Fix bug Ask Discord; Update register form

This commit is contained in:
pikiou
2022-04-22 16:06:51 +02:00
parent 99700e4474
commit 514cf1b833
3 changed files with 11 additions and 9 deletions

View File

@@ -61,5 +61,5 @@ export const fetchVolunteerDiscordIdIfNeed =
export const selectVolunteerDiscordId = createSelector(
(state: AppState) => state,
(state): number | undefined => state.volunteerDiscordId?.entity?.id
(state): string | undefined => state.volunteerDiscordId?.entity?.discordId
)