Skip to content

Commit

Permalink
Add some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Atatakai authored and Atatakai committed May 23, 2024
1 parent 57fb471 commit 0085b91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/components/Settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const NoBackupWallet = () => {
message={
<>
<Flex vertical gap={5}>
<Text strong>Your funds are at risk!</Text>
<Text className="font-weight-600">Your funds are at risk!</Text>
<Text>You will lose any assets you send on other chains.</Text>
</Flex>
</>
Expand Down
5 changes: 4 additions & 1 deletion frontend/components/Setup/Create/SetupEoaFunding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ export const SetupEoaFunding = ({
The app needs these funds to create your account on-chain.
</Typography.Paragraph>

<CardSection bordertop="true" borderbottom="true">
<CardSection
bordertop="true"
borderbottom={isFundedMasterEoa ? 'true' : 'false'}
>
<Typography.Text
className={loadingStatuses.includes(status) ? 'loading-ellipses' : ''}
>
Expand Down

0 comments on commit 0085b91

Please sign in to comment.