From 6eaf36534a7948a95b9a4742d120d3e99f6007d6 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 27 Feb 2026 20:49:34 +0900 Subject: feat(deploy): re-enable update-submodule workflow --- frontend/app/api/client.ts | 2 +- frontend/app/components/UserIcon.tsx | 2 +- frontend/app/pages/DashboardPage.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'frontend') diff --git a/frontend/app/api/client.ts b/frontend/app/api/client.ts index db5f8c8..acc1ee9 100644 --- a/frontend/app/api/client.ts +++ b/frontend/app/api/client.ts @@ -5,7 +5,7 @@ import type { paths } from "./schema"; const apiOrigin = import.meta.env.VITE_API_BASE_URL ?? - (import.meta.env.DEV ? "http://localhost:8004" : ""); + (import.meta.env.DEV ? "http://localhost:8007" : ""); const client = createClient({ baseUrl: `${apiOrigin}${API_BASE_PATH}`, diff --git a/frontend/app/components/UserIcon.tsx b/frontend/app/components/UserIcon.tsx index 2d17560..b2750dd 100644 --- a/frontend/app/components/UserIcon.tsx +++ b/frontend/app/components/UserIcon.tsx @@ -11,7 +11,7 @@ export default function UserIcon({ iconPath, displayName, className }: Props) {