From d3d5d4be27fa94f69ec610e67695165fb33b6b52 Mon Sep 17 00:00:00 2001 From: hyejj19 Date: Wed, 8 Apr 2026 10:31:55 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=EC=A6=9D=EB=A5=98=EC=86=8C=20=EB=93=9C?= =?UTF-8?q?=EB=A1=AD=EB=8B=A4=EC=9A=B4=20=EC=A0=84=EC=B2=B4=20=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=20=EB=AF=B8=EB=85=B8=EC=B6=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 증류소 조회 size를 100에서 9999로 변경하여 전체 증류소가 드롭다운에 노출되도록 수정 Closes bottle-note/workspace#217 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/pages/whisky/useWhiskyDetailForm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/whisky/useWhiskyDetailForm.ts b/src/pages/whisky/useWhiskyDetailForm.ts index 2ab7ad0..3df46e8 100644 --- a/src/pages/whisky/useWhiskyDetailForm.ts +++ b/src/pages/whisky/useWhiskyDetailForm.ts @@ -75,7 +75,7 @@ export function useWhiskyDetailForm(id: string | undefined): UseWhiskyDetailForm const { data: whiskyData, isLoading: isWhiskyLoading } = useAdminAlcoholDetail(alcoholId); const { data: categoryData, isLoading: isCategoryLoading } = useCategoryReferences(); const { data: regionData, isLoading: isRegionLoading } = useRegionList({ size: 100 }); - const { data: distilleryData, isLoading: isDistilleryLoading } = useDistilleryList({ size: 100 }); + const { data: distilleryData, isLoading: isDistilleryLoading } = useDistilleryList({ size: 9999 }); const isLoading = isWhiskyLoading || isCategoryLoading || isRegionLoading || isDistilleryLoading;