Skip to content

Commit 27de93e

Browse files
committed
Fix missing ScrollView closing brace in aboutSection
The ScrollView inside aboutSection was never closed, causing the outer VStack and aboutSection itself to be one brace short each. The compiler saw no valid return expression and reported the opaque-return-type error. https://claude.ai/code/session_01Wzv6BF7QPVDaQgraKn42FK
1 parent e73f53a commit 27de93e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Sources/HeardCore/Views.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,10 +1566,11 @@ public struct SettingsView: View {
15661566
Spacer().frame(height: 40)
15671567
}
15681568
.frame(minWidth: 500, minHeight: 500)
1569-
.background(HeardTheme.Paper.bg)
1569+
.background(HeardTheme.Paper.bg)
1570+
}
1571+
.frame(maxWidth: .infinity, maxHeight: .infinity)
1572+
.background(HeardTheme.Paper.bg)
15701573
}
1571-
.frame(maxWidth: .infinity, maxHeight: .infinity)
1572-
.background(HeardTheme.Paper.bg)
15731574
}
15741575

15751576
// MARK: Pane helpers

0 commit comments

Comments
 (0)