Skip to content

Commit

Permalink
fix(suite-native): add missing footer margin to account import summar…
Browse files Browse the repository at this point in the history
…y screen
  • Loading branch information
yanascz committed Feb 12, 2025
1 parent 010cc7c commit e925744
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export const AccountImportSummaryScreen = ({
footer={
<KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'padding' : 'height'}>
<ScreenFooterGradient />
<Box marginHorizontal="sp16">{footer}</Box>
<Box marginHorizontal="sp16" marginBottom="sp16">
{footer}
</Box>
</KeyboardAvoidingView>
}
>
Expand Down

0 comments on commit e925744

Please sign in to comment.