native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #50 from supabitapp/noble-lobster

Fix Swift 6 compatibility for EnumeratedSequence in ForEach

authored by

khoi and committed by
GitHub
edc10903 e81745ab

+1 -1
+1 -1
supacode/Features/Terminal/TabBar/Views/TerminalTabsRowView.swift
··· 20 20 var body: some View { 21 21 ZStack(alignment: .topLeading) { 22 22 HStack(alignment: .center, spacing: TerminalTabBarMetrics.tabSpacing) { 23 - ForEach(openedTabs.enumerated(), id: \.element) { index, id in 23 + ForEach(Array(openedTabs.enumerated()), id: \.element) { index, id in 24 24 if let item = manager.tabs.first(where: { $0.id == id }) { 25 25 TerminalTabView( 26 26 tab: item,