From 57f93076293763cfb9cfe64a4f423ac7e1829ec8 Mon Sep 17 00:00:00 2001 From: Alec Ananian <1013230+alecananian@users.noreply.github.com> Date: Wed, 8 Nov 2023 08:16:48 -0800 Subject: [PATCH] update default output token --- app/routes/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/routes/index.tsx b/app/routes/index.tsx index 428d183..ee4f5ac 100644 --- a/app/routes/index.tsx +++ b/app/routes/index.tsx @@ -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`, {