Fix user revenue display (#839)

* Fix user revenue display

* fix rev display
This commit is contained in:
Geometrically
2024-01-07 20:57:37 -05:00
committed by GitHub
parent 035fc69060
commit 5f6cc1281e
5 changed files with 96 additions and 24 deletions

View File

@@ -291,6 +291,7 @@ fn get_gv_range(
) -> String {
// both -> least to greatest
game_versions.sort_by(|a, b| a.created.cmp(&b.created));
game_versions.dedup_by(|a, b| a.version == b.version);
all_game_versions.sort_by(|a, b| a.created.cmp(&b.created));