fix(ios): make connection badge visible

This commit is contained in:
Peter Steinberger
2025-12-14 02:19:20 +00:00
parent 1fb123d701
commit b8b20eac6d

View File

@@ -18,7 +18,7 @@ struct RootTabs: View {
} }
.background(TabBarControllerAccessor { tabBarController in .background(TabBarControllerAccessor { tabBarController in
guard let item = tabBarController.tabBar.items?[Self.settingsTabIndex] else { return } guard let item = tabBarController.tabBar.items?[Self.settingsTabIndex] else { return }
item.badgeValue = " " item.badgeValue = ""
item.badgeColor = self.settingsBadgeColor item.badgeColor = self.settingsBadgeColor
}) })
.onAppear { self.updateConnectingPulse(for: self.bridgeIndicatorState) } .onAppear { self.updateConnectingPulse(for: self.bridgeIndicatorState) }