From e43a025e4f5ada8bbd6fb3c9e0a3867a85c42a81 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 11 Jan 2026 15:27:46 -0500 Subject: [PATCH] fix: found it --- Gaze/Views/Containers/OnboardingContainerView.swift | 2 ++ Gaze/Views/Setup/BlinkSetupView.swift | 1 + Gaze/Views/Setup/LookAwaySetupView.swift | 1 + Gaze/Views/Setup/PostureSetupView.swift | 1 + 4 files changed, 5 insertions(+) diff --git a/Gaze/Views/Containers/OnboardingContainerView.swift b/Gaze/Views/Containers/OnboardingContainerView.swift index fa65ffd..4139915 100644 --- a/Gaze/Views/Containers/OnboardingContainerView.swift +++ b/Gaze/Views/Containers/OnboardingContainerView.swift @@ -111,6 +111,7 @@ struct OnboardingContainerView: View { ) .foregroundColor(.primary) } + .buttonStyle(.plain) .glassEffectIfAvailable( GlassStyle.regular.interactive(), in: .rect(cornerRadius: 10)) } @@ -134,6 +135,7 @@ struct OnboardingContainerView: View { ) .foregroundColor(.white) } + .buttonStyle(.plain) .glassEffectIfAvailable( GlassStyle.regular.tint(currentPage == 5 ? .green : .accentColor) .interactive(), diff --git a/Gaze/Views/Setup/BlinkSetupView.swift b/Gaze/Views/Setup/BlinkSetupView.swift index 0068e82..126a9b9 100644 --- a/Gaze/Views/Setup/BlinkSetupView.swift +++ b/Gaze/Views/Setup/BlinkSetupView.swift @@ -111,6 +111,7 @@ struct BlinkSetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) } diff --git a/Gaze/Views/Setup/LookAwaySetupView.swift b/Gaze/Views/Setup/LookAwaySetupView.swift index a032f6b..0841f84 100644 --- a/Gaze/Views/Setup/LookAwaySetupView.swift +++ b/Gaze/Views/Setup/LookAwaySetupView.swift @@ -132,6 +132,7 @@ struct LookAwaySetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) } diff --git a/Gaze/Views/Setup/PostureSetupView.swift b/Gaze/Views/Setup/PostureSetupView.swift index cb702e8..26bfae3 100644 --- a/Gaze/Views/Setup/PostureSetupView.swift +++ b/Gaze/Views/Setup/PostureSetupView.swift @@ -113,6 +113,7 @@ struct PostureSetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) }