We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70c04c commit f445b2bCopy full SHA for f445b2b
src/components/DatePickerWithInput/DatePickerWithInput.tsx
@@ -22,7 +22,6 @@ export const DatePickerWithInput = (props: DatePickerWithInputProps) => {
22
<Input
23
type='date'
24
placeholder='Date'
25
- css={undefined}
26
value={formatDate(value || new Date())}
27
onClick={() => setOpen(true)}
28
onChange={() => {}}
src/components/DebounceInput/DebounceInput.tsx
@@ -20,7 +20,6 @@ export const DebounceInput = (props: DebounceInputProps) => {
20
21
return (
onChange={(ev) => setInput(ev.currentTarget.value)}
value={input}
{...rest}
0 commit comments