We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6c5e2e commit 94b0c35Copy full SHA for 94b0c35
src/aoWebWallet/ViewModels/MainViewModel.cs
@@ -434,6 +434,8 @@ public async Task ClearUserData()
434
435
private async Task TryAddTokenIds(List<string?> allTokenIds)
436
{
437
+ allTokenIds = allTokenIds.Distinct(StringComparer.OrdinalIgnoreCase).ToList();
438
+
439
foreach (var tokenId in allTokenIds)
440
441
Console.WriteLine("TryAddTokenIds: " + tokenId);
0 commit comments