Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
update default output token
Browse files Browse the repository at this point in the history
  • Loading branch information
alecananian committed Nov 8, 2023
1 parent 12903b1 commit 57f9307
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ export const loader: LoaderFunction = async ({ request }) => {
});
}

const outputSymbol = url.searchParams.get("output") ?? outputCookie ?? "GFLY";
const outputSymbol =
url.searchParams.get("output") ?? outputCookie ?? "ANIMA";
const outputToken = getTokenBySymbol(tokens, outputSymbol);
if (!outputToken) {
throw new Response(`${outputSymbol} token not found`, {
Expand Down

0 comments on commit 57f9307

Please sign in to comment.