diff options
Diffstat (limited to 'frontend/app/routes/admin.games.tsx')
| -rw-r--r-- | frontend/app/routes/admin.games.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/app/routes/admin.games.tsx b/frontend/app/routes/admin.games.tsx index 23e45c5..f9d15f7 100644 --- a/frontend/app/routes/admin.games.tsx +++ b/frontend/app/routes/admin.games.tsx @@ -3,9 +3,9 @@ import { Link, useLoaderData } from "@remix-run/react"; import { adminApiGetGames } from "../.server/api/client"; import { ensureAdminUserLoggedIn } from "../.server/auth"; -export const meta: MetaFunction = () => { - return [{ title: "[Admin] Games | iOSDC Japan 2024 Albatross.swift" }]; -}; +export const meta: MetaFunction = () => [ + { title: "[Admin] Games | iOSDC Japan 2024 Albatross.swift" }, +]; export async function loader({ request }: LoaderFunctionArgs) { const { token } = await ensureAdminUserLoggedIn(request); |
