Show initial category count

This commit is contained in:
TheXamlGuy
2024-06-15 18:37:02 +01:00
parent 5a4ce617fb
commit 83bb5c73c8
10 changed files with 27 additions and 21 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public class QueryWalletHandler(IDbContextFactory<WalletContext> dbContextFactor
{
predicate = predicate.And(x => x.State != 2);
}
else if (filter == "Starred")
else if (filter == "Favourites")
{
predicate = predicate.And(x => x.State != 2 && x.State == 1);
}