chore: small wording changes (#11)

This commit is contained in:
Owen Gretzinger
2025-07-14 18:12:01 -04:00
committed by GitHub
parent f4cadc0d65
commit 9e697080ba
3 changed files with 12 additions and 6 deletions
+2 -2
View File
@@ -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)
}
+9 -3
View File
@@ -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
+1 -1
View File
@@ -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