Skip to content

Commit

Permalink
fade filter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdleveille committed Jun 3, 2024
1 parent 72d3b45 commit 7394205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export const Filters = () => {
renderInput={params => <TextField {...params} label="fade" placeholder="fade" />}
value={filterValues.fades}
onChange={(_e: SyntheticEvent, value: string[]) =>
setFilterValues(current => ({ ...current, speeds: value }))
setFilterValues(current => ({ ...current, fades: value }))
}
/>
</div>
Expand Down

0 comments on commit 7394205

Please sign in to comment.