Skip to content

Commit 972f47d

Browse files
committed
StoreCreationSummaryView: update comments.
1 parent 10212ea commit 972f47d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

WooCommerce/Classes/Authentication/Store Creation/StoreCreationSummaryView.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,20 @@ struct StoreCreationSummaryView: View {
7474

7575
// Store info.
7676
VStack(alignment: .leading, spacing: 0) {
77+
// Image.
7778
HStack {
7879
Spacer()
7980
Image(uiImage: .storeSummaryImage)
8081
Spacer()
8182
}
8283
.background(Color(.systemColor(.systemGray6)))
84+
8385
VStack {
8486
VStack(alignment: .leading, spacing: Layout.spacingBetweenStoreNameAndDomain) {
87+
// Store name.
8588
Text(viewModel.storeName)
8689
.headlineStyle()
90+
// Store URL slug.
8791
Text(viewModel.storeSlug)
8892
.foregroundColor(Color(.secondaryLabel))
8993
.bodyStyle()
@@ -100,7 +104,7 @@ struct StoreCreationSummaryView: View {
100104
.padding(Layout.defaultPadding)
101105
}
102106

103-
// Continue button when a domain is selected.
107+
// Continue button.
104108
Group {
105109
Divider()
106110
.frame(height: Layout.dividerHeight)

0 commit comments

Comments
 (0)