Skip to content

Commit

Permalink
fix code fencing in jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
owencraston committed Dec 2, 2024
1 parent b32f080 commit c95f4b1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/components/Views/AddAccountActions/AddAccountActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ const AddAccountActions = ({ onBack }: AddAccountActionsProps) => {
}, [onBack, setIsLoading, trackEvent, createEventBuilder]);

///: BEGIN:ONLY_INCLUDE_IF(keyring-snaps)

const isBitcoinSupportEnabled = useSelector(selectIsBitcoinSupportEnabled);

const isBitcoinTestnetSupportEnabled = useSelector(
Expand Down Expand Up @@ -128,7 +127,9 @@ const AddAccountActions = ({ onBack }: AddAccountActionsProps) => {
disabled={isLoading}
testID={AddAccountModalSelectorsIDs.NEW_ACCOUNT_BUTTON}
/>
{/* ///: BEGIN:ONLY_INCLUDE_IF(keyring-snaps) */}
{
///: BEGIN:ONLY_INCLUDE_IF(keyring-snaps)
}
{isBitcoinSupportEnabled && (
<AccountAction
actionTitle={strings(
Expand All @@ -153,7 +154,9 @@ const AddAccountActions = ({ onBack }: AddAccountActionsProps) => {
disabled={isLoading || isBtcTestnetAccountAlreadyCreated}
/>
)}
{/* ///: END:ONLY_INCLUDE_IF */}
{
///: END:ONLY_INCLUDE_IF
}
<AccountAction
actionTitle={strings('account_actions.import_account')}
iconName={IconName.Import}
Expand Down

0 comments on commit c95f4b1

Please sign in to comment.