aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/UserIcon.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-27 20:49:34 +0900
committernsfisis <nsfisis@gmail.com>2026-02-27 20:54:21 +0900
commit6eaf36534a7948a95b9a4742d120d3e99f6007d6 (patch)
tree4a7dd703d661e332aaa00fb75eea12fb7399c816 /frontend/app/components/UserIcon.tsx
parent6d85a8f97c8c9e086f2f9b8c71fd730bff12af07 (diff)
downloadphperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.tar.gz
phperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.tar.zst
phperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.zip
feat(deploy): re-enable update-submodule workflow
Diffstat (limited to 'frontend/app/components/UserIcon.tsx')
-rw-r--r--frontend/app/components/UserIcon.tsx2
1 files changed, 1 insertions, 1 deletions
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) {
<img
src={
process.env.NODE_ENV === "development"
- ? `http://localhost:8004${BASE_PATH}${iconPath}`
+ ? `http://localhost:8007${BASE_PATH}${iconPath}`
: `${BASE_PATH}${iconPath}`
}
alt={`${displayName} のアイコン`}