diff options
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 [ |
