Fix displaying account username

This commit is contained in:
Arkadiusz Fal 2023-12-09 21:56:16 +01:00
parent 1ae12cfa21
commit aef0ba6ffd

View File

@ -30,7 +30,6 @@ struct AccountViewButton: View {
if accountPickerDisplaysUsername {
label
.labelStyle(.titleOnly)
}
}
}
@ -47,6 +46,6 @@ struct AccountViewButton: View {
}
private var label: some View {
Label(model.current?.description ?? "Select Account", systemImage: "globe")
Text(model.current?.description ?? "Select Account")
}
}