Skip to content

Commit a11fbc6

Browse files
fix(date-picker): remove modal prop to prevent focus trap conflict (CCExtractor#280)
- Removed modal={true} from Popover component in date-picker.tsx. - Prevents nested focus trap conflict. - Fixes page becoming unresponsive after clicking outside date picker. Fixes: CCExtractor#279
1 parent af9ab8c commit a11fbc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/components/ui/date-picker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function DatePicker({
2323
className,
2424
}: DatePickerProps) {
2525
return (
26-
<Popover modal={true}>
26+
<Popover>
2727
<PopoverTrigger asChild>
2828
<Button
2929
variant={'outline'}

0 commit comments

Comments
 (0)