diff --git a/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist b/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist
index 2d2817a..528733b 100644
--- a/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist
+++ b/TheNoiseClock.xcodeproj/xcuserdata/mattbruce.xcuserdatad/xcschemes/xcschememanagement.plist
@@ -7,12 +7,12 @@
TheNoiseClock.xcscheme_^#shared#^_
orderHint
- 1
+ 2
TheNoiseClockWidget.xcscheme_^#shared#^_
orderHint
- 0
+ 3
diff --git a/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift b/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift
index d69e44e..2fc781f 100644
--- a/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift
+++ b/TheNoiseClock/Features/Onboarding/Views/Components/OnboardingFeatureRow.swift
@@ -25,6 +25,10 @@ struct OnboardingFeatureRow: View {
Text(text)
.typography(.body)
.foregroundStyle(AppTextColors.secondary)
+ .lineLimit(nil)
+ .multilineTextAlignment(.leading)
+ .fixedSize(horizontal: false, vertical: true)
+ .layoutPriority(1)
}
.frame(maxWidth: 320, alignment: .leading)
.frame(maxWidth: .infinity, alignment: .center)