chore: small wording changes (#11)
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user