From 7e9b045ed12b199de94a25c1720287fe3732bf29 Mon Sep 17 00:00:00 2001 From: suhyun Date: Sat, 20 Dec 2025 03:31:30 +0900 Subject: [PATCH] [fix] visible question box --- src/components/CollectionPage/fishCage.tsx | 2 +- src/pages/CollectionPage.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CollectionPage/fishCage.tsx b/src/components/CollectionPage/fishCage.tsx index 2de308c..2fd8047 100644 --- a/src/components/CollectionPage/fishCage.tsx +++ b/src/components/CollectionPage/fishCage.tsx @@ -86,7 +86,7 @@ const FishCage: React.FC = ({ fish, isSelected }) => { locked ) : (
diff --git a/src/pages/CollectionPage.tsx b/src/pages/CollectionPage.tsx index ea6ecaa..54968ce 100644 --- a/src/pages/CollectionPage.tsx +++ b/src/pages/CollectionPage.tsx @@ -39,7 +39,7 @@ const CollectionPage: React.FC = () => { }, []); const getFishImage = (fish: UserFish | null) => { - if (!fish) return undefined; + if (!fish) return "/images/collection/questionSquare.png"; // 특정 group_code 리스트 const fishbunGroups = ["SPFishbun", "RBFishbun", "CPFishbun"];