Skip to content

Commit df28387

Browse files
ayangabrylclaude
andcommitted
Fix SwiftUI frame modifier compile error in SettingsView
Replace mixed fixed/flexible frame overload with all-flexible parameters to resolve "Extra argument 'width' in call" Xcode error. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 8892ab6 commit df28387

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

QuotaBar/QuotaBarApp.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct QuotaBarApp: App {
2929

3030
Settings {
3131
SettingsView(store: store, license: license)
32-
.frame(width: 440, minHeight: 480, idealHeight: 520)
32+
.frame(minWidth: 440, idealWidth: 440, minHeight: 480, idealHeight: 520)
3333
}
3434
}
3535

0 commit comments

Comments
 (0)