Skip to content

Commit

Permalink
add: missing type for action
Browse files Browse the repository at this point in the history
  • Loading branch information
zenkyuv committed Jan 16, 2025
1 parent ad8706a commit 848e810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s/context/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const non_historical = actionize_non_historical({
toggle_is_playing: state => () => {
state.is_playing = !state.is_playing
},
set_is_exporting: state => (is_exporting) => {
set_is_exporting: state => (is_exporting: boolean) => {
state.is_exporting = is_exporting
},
set_export_progress: state => (progress: number) => {
Expand Down

0 comments on commit 848e810

Please sign in to comment.