Skip to content

Commit

Permalink
style: fix lint errors (#4898)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Sep 30, 2024
1 parent 8998abf commit 9e2e636
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 9e2e636

Please sign in to comment.