Skip to content

Commit

Permalink
change things
Browse files Browse the repository at this point in the history
  • Loading branch information
indaviande committed Dec 16, 2024
1 parent 6fbd522 commit e2e57df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/composite/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useLocation } from "@remix-run/react";
import {
Button,
Container,
Divider,
Group,
Expand All @@ -11,7 +12,6 @@ import {
Text,
Title,
Value,
Button,
} from "dappkit";
import config from "merkl.config";
import type { PropsWithChildren, ReactNode } from "react";
Expand Down
2 changes: 1 addition & 1 deletion src/customer/assets/style/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
font-weight: 700;
font-style: normal;
font-display: swap;
}
}
2 changes: 1 addition & 1 deletion src/routes/_merkl.opportunities.$chain.$type.$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Tag from "src/components/element/Tag";
import { ErrorHeading } from "src/components/layout/ErrorHeading";
import useOpportunity from "src/hooks/resources/useOpportunity";

export async function loader({ params: { id, type, chain: chainId }, request }: LoaderFunctionArgs) {
export async function loader({ params: { id, type, chain: chainId } }: LoaderFunctionArgs) {
if (!chainId || !id || !type) throw "";

const chain = await ChainService.get({ search: chainId });
Expand Down

0 comments on commit e2e57df

Please sign in to comment.