Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
Signed-off-by: William So <[email protected]>
  • Loading branch information
polyipseity committed Apr 9, 2024
1 parent 457b12f commit bea0f5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sources/show-hidden-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ class ShowingRules extends SettingRules<Settings> {
...args: Parameters<typeof next>
): ReturnType<typeof next> {
next.apply(this, args)
this2.onChanged.emit().catch(error => { self.console.error(error) })
this2.onChanged.emit().catch((error: unknown) => {
self.console.error(error)
})
}
},
}))
Expand Down

0 comments on commit bea0f5e

Please sign in to comment.