Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ const IdentitySelectionScreen: React.FC<IdentitySelectionScreenProps> = ({
}, [])

const onPressOtherID = useCallback(() => {
// TODO: Implement
}, [])
dispatch({ type: BCDispatchAction.UPDATE_CARD_TYPE, payload: [BCSCCardType.Other] })
navigation.navigate(BCSCScreens.EvidenceTypeList)
}, [dispatch, navigation])

const cardButtons = useMemo(() => {
return (
Expand Down
1 change: 1 addition & 0 deletions app/src/bcsc-theme/features/verify/SetupStepsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ const SetupStepsScreen: React.FC<SetupStepsScreenProps> = ({ navigation }) => {
<TouchableOpacity
onPress={() => {
if (!registered) {
dispatch({ type: BCDispatchAction.UPDATE_CARD_TYPE, payload: [BCSCCardType.None] })
navigation.navigate(BCSCScreens.IdentitySelection)
}

Expand Down
Loading