feat: tag zap goals

This commit is contained in:
2025-05-13 12:20:59 +01:00
parent f1e518a0d7
commit 3e18f7544e
4 changed files with 109 additions and 49 deletions

View File

@ -234,7 +234,7 @@ String formatSats(int n) {
final fmt = NumberFormat();
if (n >= 1000000) {
return "${fmt.format(n / 1000000)}M";
} else if (n >= 1000) {
} else if (n >= 1500) {
return "${fmt.format(n / 1000)}k";
} else {
return fmt.format(n);