diff --git a/Packages/App/Sources/AppUIMain/Views/App/InstalledProfileView.swift b/Packages/App/Sources/AppUIMain/Views/App/InstalledProfileView.swift index a35833b3..7d1ba133 100644 --- a/Packages/App/Sources/AppUIMain/Views/App/InstalledProfileView.swift +++ b/Packages/App/Sources/AppUIMain/Views/App/InstalledProfileView.swift @@ -90,7 +90,7 @@ private extension InstalledProfileView { Text(profile?.name ?? Strings.Views.App.InstalledProfile.None.name) .font(.title2) .fontWeight(theme.relevantWeight) - .themeTruncating(.tail) + .themeMultiLine(true) } var statusView: some View { diff --git a/Packages/App/Sources/AppUIMain/Views/App/ProfileCardView.swift b/Packages/App/Sources/AppUIMain/Views/App/ProfileCardView.swift index 99412b34..b51f78bc 100644 --- a/Packages/App/Sources/AppUIMain/Views/App/ProfileCardView.swift +++ b/Packages/App/Sources/AppUIMain/Views/App/ProfileCardView.swift @@ -51,7 +51,7 @@ struct ProfileCardView: View { } label: { Text(preview.name) .font(.headline) - .themeTruncating() + .themeMultiLine(true) } tunnelView .font(.subheadline)