diff --git a/Projects/Addons/Sources/Navigation/ChangeAddonNavigation.swift b/Projects/Addons/Sources/Navigation/ChangeAddonNavigation.swift index 6066d0f09d..9deaa54fae 100644 --- a/Projects/Addons/Sources/Navigation/ChangeAddonNavigation.swift +++ b/Projects/Addons/Sources/Navigation/ChangeAddonNavigation.swift @@ -147,6 +147,7 @@ public struct ChangeAddonNavigation: View { content: { ConfirmChangeAddonScreen() .embededInNavigation( + options: .navigationBarHidden, tracking: ChangeAddonTrackingType.confirmAddonScreen ) .environmentObject(changeAddonNavigationVm) diff --git a/Projects/Addons/Sources/Views/ConfirmChangeAddonScreen.swift b/Projects/Addons/Sources/Views/ConfirmChangeAddonScreen.swift index 24664226c3..2a7a1268c4 100644 --- a/Projects/Addons/Sources/Views/ConfirmChangeAddonScreen.swift +++ b/Projects/Addons/Sources/Views/ConfirmChangeAddonScreen.swift @@ -11,7 +11,7 @@ public struct ConfirmChangeAddonScreen: View { .hFormAttachToBottom { hSection { VStack(spacing: .padding32) { - VStack(spacing: 0) { + VStack(alignment: .leading, spacing: 0) { hText(L10n.addonFlowConfirmationTitle) hText( L10n.addonFlowConfirmationDescription( @@ -19,7 +19,6 @@ public struct ConfirmChangeAddonScreen: View { .displayDateDDMMMYYYYFormat ?? "" ) ) - .multilineTextAlignment(.center) .foregroundColor(hTextColor.Translucent.secondary) } VStack(spacing: .padding8) { @@ -38,9 +37,9 @@ public struct ConfirmChangeAddonScreen: View { } content: { hText(L10n.generalCloseButton) } - } } + .padding(.top, .padding24) } .sectionContainerStyle(.transparent) }