Skip to content

Commit

Permalink
fix: stake layout
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMasayoshi committed Sep 24, 2024
1 parent c14510b commit 1ab7d76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app/(evm)/stake/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function Page() {
<VotingPowerProvider>
<VotingPowerCard />
</VotingPowerProvider>
<div className="grid grid-cols-1 md:grid-cols-[auto_400px] gap-6 pt-6">
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 pt-6">
<div>
<ManageBarCard />
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/ui/stake/XSushiPrice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const XSushiPrice = ({
})

const price = useMemo(() => {
const _sushiPrice = prices?.get(SUSHI_ADDRESS[ChainId.ETHEREUM])
const _sushiPrice = prices?.getFraction(SUSHI_ADDRESS[ChainId.ETHEREUM])

const sushiPrice =
_sushiPrice !== undefined
Expand Down

0 comments on commit 1ab7d76

Please sign in to comment.