Skip to content

Commit

Permalink
fix: fixed the signup issue caused due to wallet feature flag (deriv-…
Browse files Browse the repository at this point in the history
  • Loading branch information
aum-deriv authored Nov 6, 2023
1 parent 38b322a commit aa2b605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/App/Containers/Redirect/redirect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Redirect = ({
const code_param = url_params.get('code') || verification_code[action_param];
sessionStorage.verification_code = code_param;
const ext_platform_url = url_params.get('ext_platform_url');
const is_next_wallet = localStorage.getObject('FeatureFlagsStore')?.data.next_wallet;
const is_next_wallet = localStorage.getObject('FeatureFlagsStore')?.data?.next_wallet;
const { is_appstore } = React.useContext(PlatformContext);

const redirectToExternalPlatform = url => {
Expand Down

0 comments on commit aa2b605

Please sign in to comment.