Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ios/HackerNews/Settings/SettingsScreen.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// SettingsScreen.swift
// HackerNews
// HackerNewssss
//
// Created by Rikin Marfatia on 12/3/24.
//
Expand All @@ -19,7 +19,7 @@ struct SettingsScreen: View {
ScrollView {
LazyVStack(spacing: 8) {
VStack(alignment: .leading, spacing: 4) {
Text("settings.section.profile")
Text("settings.section.about")
.font(theme.themedFont(size: 12, style: .sans, weight: .medium))
LoginRow(loggedIn: model.authState == AuthState.loggedIn) {
model.gotoLogin()
Expand Down Expand Up @@ -47,7 +47,7 @@ struct SettingsScreen: View {
url: URL(string: "https://www.x.com/emergetools")!)
}
)

SettingsRow(
text: String(localized: "settings.row.followSentry"),
leadingIcon: {
Expand Down Expand Up @@ -85,7 +85,7 @@ struct SettingsScreen: View {
url: URL(string: "https://www.x.com/heyrikin")!)
}
)

#if ADHOC
SettingsRow(
text: String(localized: "settings.row.checkForUpdates"),
Expand Down Expand Up @@ -151,7 +151,7 @@ struct SettingsScreen: View {
@Bindable var theme = theme
Text("settings.section.appearance")
.font(.ibmPlexSans(.medium, size: 12))

SettingsRow(
text: String(localized: "settings.row.fontFamily"),
leadingIcon: {
Expand Down Expand Up @@ -181,7 +181,7 @@ struct SettingsScreen: View {
},
action: {}
)

SettingsRow(
text: String(localized: "settings.row.fontStyle"),
leadingIcon: {
Expand Down
2 changes: 1 addition & 1 deletion ios/HackerNews/Stories/StoryRow.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Story.swift
// Hacker News
// Hacker Newsss
//
// Created by Ryan Brooks on 6/21/23.
//
Expand Down
Loading