diff --git a/meetingnotes/Views/OnboardingView.swift b/meetingnotes/Views/OnboardingView.swift index 6cf067f..deeb15c 100644 --- a/meetingnotes/Views/OnboardingView.swift +++ b/meetingnotes/Views/OnboardingView.swift @@ -66,7 +66,7 @@ struct OnboardingView: View { HStack { Image(systemName: "info.circle") .foregroundColor(.blue) - Text("Stored locally and encrypted.") + Text("Stored locally and encrypted in Keychain.") .font(.caption) .foregroundColor(.secondary) } @@ -80,7 +80,7 @@ struct OnboardingView: View { .font(.title2) .fontWeight(.semibold) - Text("Of note, I am tracking a few basic anonymous metrics (installs, opens, meetings created) using PostHog, because I'm trying to gauge interest in the app and whether it's worth it to pay for an Apple Developer License & domain name. Everything is completely anonymous (feel free to check the source code). If you have any concerns, please reach out.") + Text("Of note, I am tracking a few basic anonymous metrics (installs, opens, meetings created) using PostHog, because I'm trying to gauge interest in the app. Everything is completely anonymous (feel free to check the source code). If you have any concerns, please reach out and we can find a solution.") .font(.body) .foregroundColor(.secondary) } diff --git a/meetingnotes/Views/SettingsView.swift b/meetingnotes/Views/SettingsView.swift index de243ac..b92dd1a 100644 --- a/meetingnotes/Views/SettingsView.swift +++ b/meetingnotes/Views/SettingsView.swift @@ -19,7 +19,7 @@ struct SettingsView: View { .font(.headline) .foregroundColor(.primary) - Text("Stored locally and encrypted.") + Text("Stored locally and encrypted in Keychain.") .font(.caption) .foregroundColor(.secondary) @@ -130,10 +130,16 @@ struct SettingsView: View { .font(.headline) .foregroundColor(.primary) - Button("Reset Onboarding") { + Button { viewModel.resetOnboarding() + } label: { + Text("Reset Onboarding") + .padding(.horizontal, 16) + .padding(.vertical, 8) + .background(Color.secondary.opacity(0.2)) + .cornerRadius(8) } - .foregroundColor(.blue) + .buttonStyle(.plain) } // Save button diff --git a/solo-pr.sh b/solo-pr.sh index 00c2f39..8cf978a 100755 --- a/solo-pr.sh +++ b/solo-pr.sh @@ -35,7 +35,7 @@ git commit -m "$COMMIT_MSG" git push -u origin "$BRANCH_NAME" # Step 4: Create PR -gh pr create --title "$COMMIT_MSG" --base main --head "$BRANCH_NAME" +gh pr create --title "$COMMIT_MSG" --body "" --base main --head "$BRANCH_NAME" # Step 5: Merge PR gh pr merge "$BRANCH_NAME" --squash --delete-branch