Skip to content

Commit

Permalink
chore: keep default strategies sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
bonustrack authored Sep 30, 2024
1 parent db8b63a commit e40b2d5
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 @@ -23,8 +23,7 @@ export function useStrategies() {

const filterStrategies = (q = '') =>
strategies.value

Check failure on line 25 in src/composables/useStrategies.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Delete `⏎······`
.filter(s => s.id.toLowerCase().includes(q.toLowerCase()))
.sort((a, b) => b.spacesCount - a.spacesCount);
.filter(s => s.id.toLowerCase().includes(q.toLowerCase()));

const { apolloQuery } = useApolloQuery();

Expand Down

0 comments on commit e40b2d5

Please sign in to comment.