Skip to content

Commit

Permalink
Remove unnecessary void operator
Browse files Browse the repository at this point in the history
Addresses RISDEV-2310
  • Loading branch information
zechmeister committed Oct 17, 2023
1 parent d184876 commit 969c15c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions frontend/src/components/procedures/ProcedureList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ const debouncedPushQueryToRoute = (() => {
return (currentQuerry: Query<string>) => {
if (timeoutId != null) window.clearTimeout(timeoutId)
timeoutId = window.setTimeout(
() => void pushQueryToRoute(currentQuerry),
500,
)
timeoutId = window.setTimeout(() => pushQueryToRoute(currentQuerry), 500)
}
})()
Expand Down

0 comments on commit 969c15c

Please sign in to comment.