Skip to content

Commit b75d4de

Browse files
fix: update DayButton props to include modifiers for enhanced functionality
1 parent 41a64bb commit b75d4de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/ui/registry/default/particles/p-calendar-24.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default function Particle() {
6464
}
6565

6666
function DayButton(props: DayButtonProps & { prices: Record<string, number> }) {
67-
const { day, prices, ...buttonProps } = props;
67+
const { day, prices, modifiers, ...buttonProps } = props;
6868
const price = prices[format(day.date, "yyyy-MM-dd")];
6969
const isGoodPrice = price !== undefined && price < GOOD_PRICE_THRESHOLD;
7070

0 commit comments

Comments
 (0)