1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00

settings: change settings order: Reactions -> Developer

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
Suhail Saqan 2023-08-05 01:19:39 -05:00 committed by William Casarin
parent 3908192fe2
commit 5ded564bdc

View File

@ -60,13 +60,13 @@ struct ConfigView: View {
IconLabel(NSLocalizedString("Translation", comment: "Section header for text and appearance settings"), img_name: "globe", color: .green)
}
NavigationLink(value: Route.DeveloperSettings(settings: settings)) {
IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack)
}
NavigationLink(value: Route.ReactionsSettings(settings: settings)) {
IconLabel(NSLocalizedString("Reactions", comment: "Section header for reactions settings"), img_name: "shaka.fill", color: .purple)
}
NavigationLink(value: Route.DeveloperSettings(settings: settings)) {
IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack)
}
}
Section(NSLocalizedString("Sign Out", comment: "Section title for signing out")) {