Skip to content

Commit

Permalink
Merge pull request #451 from PermanentOrg/feature/VSP-1428-Onboarding…
Browse files Browse the repository at this point in the history
…-design-updates-rework

VSP-1428 [IOS] Onboarding design updates resolved testing bugs
  • Loading branch information
luciancerbu-vsp authored Aug 28, 2024
2 parents b5f5386 + 3088d76 commit 3053b36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct OnboardingArchiveNameView: View {
.onTapGesture {
dismissKeyboard()
}
Text("Name your new archive. This is the legal or official name of the person, family, group, or organization the archive is about. You can edit the name later if needed.")
Text("Name your new archive. This is the formal or official name of the person, family, group, or organization the archive represents. You can edit the name later if needed.")
.textStyle(UsualSmallXRegularTextStyle())
.foregroundColor(.blue25)
.lineSpacing(8.0)
Expand Down Expand Up @@ -100,7 +100,7 @@ struct OnboardingArchiveNameView: View {
ScrollViewReader { scrollReader in
ScrollView(showsIndicators: false) {
VStack(alignment: .leading, spacing: 64) {
Text("Name your new archive. This is the legal or official name of the person, family, group, or organization the archive is about. You can edit the name later if needed.")
Text("Name your new archive. This is the formal or official name of the person, family, group, or organization the archive represents. You can edit the name later if needed.")
.textStyle(UsualRegularTextStyle())
.foregroundColor(.blue25)
.lineSpacing(8.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ struct OnboardingCreateFirstArchiveView: View {
ZStack(alignment: .bottom) {
VStack(spacing: 32) {
HStack() {
Text("With my first archive, I plan to capture and preserve material about…")
Text("What do you plan to capture and preserve with your first archive?")
.textStyle(UsualRegularTextStyle())
.foregroundColor(.blue25)
.lineSpacing(8.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class OnboardingWhatsImportantViewModel: ObservableObject {
let status = archive.archiveVO?.status,
let archiveID = archive.archiveVO?.archiveID,
status == ArchiveVOData.Status.ok {
containerViewModel.allArchives.append(OnboardingArchive(fullname: containerViewModel.fullName, accessType: AccessRole.roleForValue(archive.archiveVO?.accessRole).groupName, status: status, archiveID: archiveID, thumbnailURL: archive.archiveVO?.thumbURL200 ?? "", isThumbnailGenerated: archive.archiveVO?.thumbStatus != .genAvatar ? true : false))
containerViewModel.allArchives.append(OnboardingArchive(fullname: fullName, accessType: AccessRole.roleForValue(archive.archiveVO?.accessRole).groupName, status: status, archiveID: archiveID, thumbnailURL: archive.archiveVO?.thumbURL200 ?? "", isThumbnailGenerated: archive.archiveVO?.thumbStatus != .genAvatar ? true : false))
}
}
} else {
Expand Down

0 comments on commit 3053b36

Please sign in to comment.