Skip to content

Commit

Permalink
fix(auth): sort tags
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekmedia committed Jun 12, 2024
1 parent b2f9c6f commit 3d46b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/lib/store/code_display_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CodeDisplayStore {
if (code.hasError) continue;
tags.addAll(code.display.tags);
}
return tags.toList();
return tags.toList()..sort();
}

Future<void> showDeleteTagDialog(BuildContext context, String tag) async {
Expand Down

0 comments on commit 3d46b01

Please sign in to comment.