aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/dashboard.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-01 22:07:29 +0900
committernsfisis <nsfisis@gmail.com>2024-08-01 22:07:29 +0900
commit00e50b2dcfed209669c46da54dc07905d65887b8 (patch)
treee330b62109b7d0f539ffafee1c9a77203bed002b /frontend/app/routes/dashboard.tsx
parentae750a66feb478b06ae62bf8947782c11606de2d (diff)
downloadphperkaigi-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.gz
phperkaigi-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.zst
phperkaigi-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.zip
chore(frontend): [biome] organize imports
Diffstat (limited to 'frontend/app/routes/dashboard.tsx')
-rw-r--r--frontend/app/routes/dashboard.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/app/routes/dashboard.tsx b/frontend/app/routes/dashboard.tsx
index b93e5d1..1f80634 100644
--- a/frontend/app/routes/dashboard.tsx
+++ b/frontend/app/routes/dashboard.tsx
@@ -1,8 +1,8 @@
import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node";
import { redirect } from "@remix-run/node";
-import { Link, useLoaderData, Form } from "@remix-run/react";
-import { isAuthenticated } from "../.server/auth";
+import { Form, Link, useLoaderData } from "@remix-run/react";
import { apiGetGames } from "../.server/api/client";
+import { isAuthenticated } from "../.server/auth";
export const meta: MetaFunction = () => {
return [{ title: "Dashboard | iOSDC Japan 2024 Albatross.swift" }];