aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/UserIcon.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-17 16:04:36 +0900
committernsfisis <nsfisis@gmail.com>2025-08-17 16:24:47 +0900
commit7ce06a9fd904a96c92d6383a09cad2ad99f4053d (patch)
tree287fa99a73fe3d96820de0cb88afe3eefddaf647 /frontend/app/components/UserIcon.tsx
parent2cb998d18de1f5928a3b2c995ab5c2d32f22c898 (diff)
downloadiosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.tar.gz
iosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.tar.zst
iosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.zip
feat: update "PHPerKaigi" to "iOSDC Japan"
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 8002c6f..2d17560 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:8003${BASE_PATH}${iconPath}`
+ ? `http://localhost:8004${BASE_PATH}${iconPath}`
: `${BASE_PATH}${iconPath}`
}
alt={`${displayName} のアイコン`}