aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/golf.$gameId.watch.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-04 14:11:34 +0900
committernsfisis <nsfisis@gmail.com>2024-08-04 14:16:59 +0900
commitfa7755592845a44928e88d2ab78cc04425aa9024 (patch)
treea07dc0ee1bef58d24326f5dc1d2734c4ad298ab7 /frontend/app/routes/golf.$gameId.watch.tsx
parent4c43d2b7b2b42b0da7863ea468fa39bf8129ebdf (diff)
downloadphperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.tar.gz
phperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.tar.zst
phperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.zip
chore(frontend): format
Diffstat (limited to 'frontend/app/routes/golf.$gameId.watch.tsx')
-rw-r--r--frontend/app/routes/golf.$gameId.watch.tsx16
1 files changed, 7 insertions, 9 deletions
diff --git a/frontend/app/routes/golf.$gameId.watch.tsx b/frontend/app/routes/golf.$gameId.watch.tsx
index 7c623e1..83b7a1a 100644
--- a/frontend/app/routes/golf.$gameId.watch.tsx
+++ b/frontend/app/routes/golf.$gameId.watch.tsx
@@ -6,15 +6,13 @@ import { ensureUserLoggedIn } from "../.server/auth";
import GolfWatchApp from "../components/GolfWatchApp.client";
import GolfWatchAppConnecting from "../components/GolfWatchApps/GolfWatchAppConnecting";
-export const meta: MetaFunction<typeof loader> = ({ data }) => {
- return [
- {
- title: data
- ? `Golf Watching ${data.game.display_name} | iOSDC Japan 2024 Albatross.swift`
- : "Golf Watching | iOSDC Japan 2024 Albatross.swift",
- },
- ];
-};
+export const meta: MetaFunction<typeof loader> = ({ data }) => [
+ {
+ title: data
+ ? `Golf Watching ${data.game.display_name} | iOSDC Japan 2024 Albatross.swift`
+ : "Golf Watching | iOSDC Japan 2024 Albatross.swift",
+ },
+];
export async function loader({ params, request }: LoaderFunctionArgs) {
const { token } = await ensureUserLoggedIn(request);