diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:07:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:07:29 +0900 |
| commit | 00e50b2dcfed209669c46da54dc07905d65887b8 (patch) | |
| tree | e330b62109b7d0f539ffafee1c9a77203bed002b /frontend/app/routes/admin.games_.$gameId.tsx | |
| parent | ae750a66feb478b06ae62bf8947782c11606de2d (diff) | |
| download | iosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.gz iosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.zst iosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.zip | |
chore(frontend): [biome] organize imports
Diffstat (limited to 'frontend/app/routes/admin.games_.$gameId.tsx')
| -rw-r--r-- | frontend/app/routes/admin.games_.$gameId.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/app/routes/admin.games_.$gameId.tsx b/frontend/app/routes/admin.games_.$gameId.tsx index 1ad8a2a..a7bd651 100644 --- a/frontend/app/routes/admin.games_.$gameId.tsx +++ b/frontend/app/routes/admin.games_.$gameId.tsx @@ -1,11 +1,11 @@ import type { + ActionFunctionArgs, LoaderFunctionArgs, MetaFunction, - ActionFunctionArgs, } from "@remix-run/node"; -import { useLoaderData, Form } from "@remix-run/react"; +import { Form, useLoaderData } from "@remix-run/react"; +import { adminApiGetGame, adminApiPutGame } from "../.server/api/client"; import { isAuthenticated } from "../.server/auth"; -import { adminApiPutGame, adminApiGetGame } from "../.server/api/client"; export const meta: MetaFunction<typeof loader> = ({ data }) => { return [ |
