Skip to content

Commit

Permalink
fix: js linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Sobolewski committed Sep 14, 2023
1 parent e6ca47c commit 3308cbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/src/inputs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,9 @@ export const ComboBox = InputAdapter(Fluent.ComboBox, (value, setValue, props) =
}
setValue(key);
},
})
});
}, { policy: debounce, delay: 250 });


export const DatePicker = InputAdapter(Fluent.DatePicker, (value, setValue) => ({
value: value ? new Date(value) : undefined,
onSelectDate: setValue,
Expand Down

0 comments on commit 3308cbf

Please sign in to comment.