Skip to content

Commit

Permalink
style: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Sep 30, 2024
1 parent 8998abf commit 50d511e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/composables/useStrategies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ export function useStrategies() {
});

const filterStrategies = (q = '') =>
strategies.value
.filter(s => s.id.toLowerCase().includes(q.toLowerCase()));
strategies.value.filter(s => s.id.toLowerCase().includes(q.toLowerCase()));

const { apolloQuery } = useApolloQuery();

Expand Down

0 comments on commit 50d511e

Please sign in to comment.