From d03fd909efbe5ba48df07ca6668924536c1d8668 Mon Sep 17 00:00:00 2001 From: jwinterm Date: Sat, 16 May 2026 12:23:37 -0400 Subject: [PATCH] Fix dangling 'if (!isMoneroOnly) ...[' in support_view_model.dart Python regex strip from 6ec755ec2 removed the MoonPay + Robinhood LinkListItem entries that lived inside an 'if (!isMoneroOnly) ...[ ]' conditional list-spread, but left the opening '...[' dangling at line 66 with no matching close bracket. mobx_codegen and hive_generator both threw 'Expected to find ]' at line 67. Remove the dead conditional. Build moves past secrets-generation + mobx-codegen + hive-generator now. --- lib/view_model/support_view_model.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/view_model/support_view_model.dart b/lib/view_model/support_view_model.dart index 41a9fcb5..478dc54d 100644 --- a/lib/view_model/support_view_model.dart +++ b/lib/view_model/support_view_model.dart @@ -63,7 +63,6 @@ abstract class SupportViewModelBase with Store { icon: 'assets/images/trocador.png', linkTitle: 'mail@trocador.app', link: 'mailto:mail@trocador.app'), - if (!isMoneroOnly) ...[ ]; final docsUrl = 'https://github.com/Such-Software/hash-wallet'; -- 2.50.1 (Apple Git-155)