Skip to content

Commit

Permalink
Merge branch 'main' into feat/nom-pool-fees
Browse files Browse the repository at this point in the history
  • Loading branch information
UrbanWill authored Sep 18, 2024
2 parents 8c2572c + 6b9638b commit f86cf84
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion apps/portal/src/components/widgets/WalletConnectionSideSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,16 @@ export const WalletConnectionSideSheetComponent = (props: WalletConnectionSideSh
<AddReadOnlyAccountDialog>
{({ onToggleOpen }) => (
<button css={{ display: 'contents', cursor: 'pointer' }} onClick={onToggleOpen}>
<Text.BodyLarge as="div" alpha="high" css={{ textAlign: 'center' }}>
<Text.BodyLarge
as="div"
alpha="high"
css={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
gap: '2rem',
}}
>
<Eye size="2rem" css={{ verticalAlign: 'text-top' }} /> Add watched account
</Text.BodyLarge>
</button>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-recipes/src/StakePosition/StakePosition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ const StakePosition = Object.assign(
</Text.BodySmall>
<Text.BodyLarge as="div" alpha="high">
<Suspense fallback={<CircularProgressIndicator size="1em" />}>
{props.rewards ?? <Text alpha="medium">Coming soon</Text>}
{props.rewards ?? <Text alpha="medium">--</Text>}
</Suspense>
<div css={{ display: 'none', [MEDIUM_CONTAINER_QUERY]: { display: 'revert' } }} />{' '}
<Suspense>
Expand Down

0 comments on commit f86cf84

Please sign in to comment.