Skip to content

Commit c7efbad

Browse files
committed
Improve text color of caption text
1 parent 6cd1571 commit c7efbad

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Samples/MobileBuyIntegration/MobileBuyIntegration/Localizable.xcstrings

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
},
5858
"Handle Product URLs" : {
5959

60+
},
61+
"If toggled on, customer information will be attached to cart from your app settings. When toggled off, customer information will be collected from the Apple Pay sheet." : {
62+
6063
},
6164
"Loading products..." : {
6265

@@ -123,9 +126,6 @@
123126
},
124127
"Web pixel events" : {
125128

126-
},
127-
"When authenticated, customer information from the environment config will be passed to the Apple Pay sheet. When unauthenticated, Apple will use provide customer information from the device." : {
128-
129129
},
130130
"Your cart is empty." : {
131131

Samples/MobileBuyIntegration/MobileBuyIntegration/Views/SettingsView.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ struct SettingsView: View {
6868

6969
Section(header: Text("Accelerated Checkouts")) {
7070
Toggle("Use authenticated customer", isOn: $config.authenticated)
71-
Text("When authenticated, customer information from the environment config will be passed to the Apple Pay sheet. When unauthenticated, Apple will use provide customer information from the device.")
71+
Text("If toggled on, customer information will be attached to cart from your app settings. When toggled off, customer information will be collected from the Apple Pay sheet.")
7272
.font(.caption)
73+
.foregroundStyle(.secondary)
7374
}
7475

7576
Section(header: Text("Universal Links")) {
@@ -85,6 +86,7 @@ struct SettingsView: View {
8586
"By default, the app will only handle the selections above and route everything else to Safari. Enabling the \"Handle all Universal Links\" setting will route all Universal Links to this app."
8687
)
8788
.font(.caption)
89+
.foregroundStyle(.secondary)
8890
}
8991

9092
Section(header: Text("Theme")) {

0 commit comments

Comments
 (0)