버그 픽스

This commit is contained in:
focp212@naver.com
2025-10-29 10:06:15 +09:00
parent 7a8cafe7bb
commit 92ae235b68
3 changed files with 20 additions and 13 deletions

View File

@@ -52,8 +52,8 @@ export interface FilterRangeAmountProps {
title?: string;
minAmount?: number;
maxAmount?: number;
setMinAmount: (minAmount: number) => void;
setMaxAmount: (maxAmount: number) => void;
setMinAmount: (minAmount: number | undefined) => void;
setMaxAmount: (maxAmount: number | undefined) => void;
};
export interface FilterButtonGroupsProps {
title: string;