Skip to content

Commit

Permalink
fixup! feat(suite-native): enable solana via message system
Browse files Browse the repository at this point in the history
  • Loading branch information
vytick committed Dec 10, 2024
1 parent 00e3bd8 commit 951de52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions suite-native/module-accounts-management/src/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import {

export const selectIsNetworkSendFlowEnabled = (
state: FeatureFlagsRootState,
networkSymbol?: NetworkSymbol,
symbol?: NetworkSymbol,
) => {
if (!networkSymbol) return false;
const networkType = getNetworkType(networkSymbol);
if (!symbol) return false;
const networkType = getNetworkType(symbol);

const isCardanoSendEnabled = selectIsFeatureFlagEnabled(
state,
Expand Down

0 comments on commit 951de52

Please sign in to comment.