Skip to content

Commit

Permalink
chore: copilot suggestion for tightening up a type
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Nov 29, 2024
1 parent b862313 commit d7ce226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/filters/Submitter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useFilter } from '../contexts/FilterProvider';
export default function Submitter(): JSX.Element {
const { filterDispatch } = useFilter();

const onChange = debounce((value) => {
const onChange = debounce((value: string) => {
filterDispatch({
type: 'UPDATE_TABLE',
filterKey: 'submitter',
Expand Down

0 comments on commit d7ce226

Please sign in to comment.