Skip to content

Commit f445b2b

Browse files
committed
Removed CSS, no longer required
1 parent b70c04c commit f445b2b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/components/DatePickerWithInput/DatePickerWithInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export const DatePickerWithInput = (props: DatePickerWithInputProps) => {
2222
<Input
2323
type='date'
2424
placeholder='Date'
25-
css={undefined}
2625
value={formatDate(value || new Date())}
2726
onClick={() => setOpen(true)}
2827
onChange={() => {}}

src/components/DebounceInput/DebounceInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export const DebounceInput = (props: DebounceInputProps) => {
2020

2121
return (
2222
<Input
23-
css={undefined}
2423
onChange={(ev) => setInput(ev.currentTarget.value)}
2524
value={input}
2625
{...rest}

0 commit comments

Comments
 (0)