Skip to content

Commit

Permalink
fic velords chart
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBeardEth committed Oct 6, 2024
1 parent 09c2f63 commit 1a5b019
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/nextjs/src/app/(app)/account/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function RootLayout({
<PageLayout>
<SidebarLayout defaultOpen={isSidebarOpen}>
<AppSidebar />
<SidebarTrigger className={cn("fixed top-6 z-50")} />
<SidebarTrigger className={cn("fixed top-6 z-50 ml-3")} />
<div className="flex flex-1 flex-col transition-all duration-300 ease-in-out">
<AuthWrapper>{children}</AuthWrapper>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ export function VeLordsRewardsChart({
<YAxis
yAxisId="apy"
dataKey="apy"
label={{ value: "% APY", angle: -90, position: "insideLeft" }}
label={{
value: "% APY (4 year lock)",
angle: -90,
position: "insideLeft",
offset: 18,
}}
/>
<YAxis
yAxisId="total_amount"
Expand All @@ -64,7 +69,8 @@ export function VeLordsRewardsChart({
label={{
value: "Total Lords Rewards",
angle: -90,
position: "outsideLeft",
position: "outside",
offset: 25,
}}
/>
<ChartTooltip content={<ChartTooltipContent />} />
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/src/hooks/bridge/useBridgeL2Realms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
getCollectionAddresses,
REALMS_BRIDGE_ADDRESS,
} from "@realms-world/constants";
import { toast } from "@realms-world/ui";
import { toast } from "@realms-world/ui/components/ui/use-toast";

import { useERC721Approval } from "../token/starknet/useERC721Approval";
import useStore from "../useStore";
Expand Down

0 comments on commit 1a5b019

Please sign in to comment.