Remove the double # in quick access pills

This commit is contained in:
Thomas Ricouard 2024-01-01 21:29:12 +01:00
parent 47436daaf2
commit f235ebb720
1 changed files with 9 additions and 2 deletions

View File

@ -42,8 +42,15 @@ struct TimelineQuickAccessPills: View {
Button {
timeline = filter
} label: {
Label(filter.localizedTitle(), systemImage: filter.iconName())
.font(.callout)
switch filter {
case .hashtag:
Label(filter.title.replacingOccurrences(of: "#", with: ""),
systemImage: filter.iconName())
.font(.callout)
default:
Label(filter.localizedTitle(), systemImage: filter.iconName())
.font(.callout)
}
}
.transition(.push(from: .leading).combined(with: .opacity))
.onDrag {