Skip to content

Commit

Permalink
fix(super-app-link): add getOrElse to feature flag selector
Browse files Browse the repository at this point in the history
  • Loading branch information
jjBlockchain committed May 17, 2024
1 parent 2fbcbd6 commit adec82f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Divider = () => (
)

const SuperAppLink = () => {
const isSuperAppEnabled = useSelector(getIsSuperAppEnabled)
const isSuperAppEnabled = useSelector(getIsSuperAppEnabled).getOrElse(false)
const cookies = new Cookies()
const hasSuperAppAccess = cookies.get('wallet_v5_ui_available')

Expand Down

0 comments on commit adec82f

Please sign in to comment.