Skip to content

Commit 8b58ab8

Browse files
committed
fix: replace 7 non-existent SF Symbols with valid ones
1 parent d0a5750 commit 8b58ab8

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

TablePro/Models/Connection/ConnectionToolbarState.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ enum ConnectionEnvironment: String, CaseIterable {
2626
case .local: return "house.fill"
2727
case .ssh: return "lock.fill"
2828
case .production: return "exclamationmark.triangle.fill"
29-
case .staging: return "flask.fill"
29+
case .staging: return "testtube.2"
3030
}
3131
}
3232

TablePro/Models/Connection/SSHTypes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ enum SSHAuthMethod: String, CaseIterable, Identifiable, Codable {
2727
case .password: return "key.fill"
2828
case .privateKey: return "doc.text.fill"
2929
case .sshAgent: return "person.badge.key.fill"
30-
case .keyboardInteractive: return "lock.rotation"
30+
case .keyboardInteractive: return "keyboard"
3131
}
3232
}
3333
}

TablePro/Models/Connection/SafeModeLevel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ internal extension SafeModeLevel {
6262

6363
var iconName: String {
6464
switch self {
65-
case .silent: return "lock.open"
65+
case .silent: return "lock.open.fill"
6666
case .alert: return "exclamationmark.triangle"
6767
case .alertFull: return "exclamationmark.triangle.fill"
6868
case .safeMode: return "lock.shield"

TablePro/Views/Components/EmptyStateView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ extension EmptyStateView {
8787
/// Empty state for indexes
8888
static func indexes(onAdd: @escaping () -> Void) -> EmptyStateView {
8989
EmptyStateView(
90-
icon: "list.bullet.indent",
90+
icon: "list.bullet",
9191
title: String(localized: "No Indexes Defined"),
9292
description: String(localized: "Add indexes to improve query performance on frequently searched columns"),
9393
actionTitle: String(localized: "Add Index"),

TablePro/Views/Settings/AISettingsView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,11 @@ struct AISettingsView: View {
292292

293293
private func iconForProviderType(_ type: AIProviderType) -> String {
294294
switch type {
295-
case .claude: return "brain"
295+
case .claude: return "cpu"
296296
case .openAI: return "cpu"
297297
case .openRouter: return "arrow.triangle.branch"
298298
case .ollama: return "desktopcomputer"
299-
case .gemini: return "sparkle"
299+
case .gemini: return "sparkles"
300300
case .custom: return "gearshape"
301301
}
302302
}

TablePro/Views/Sidebar/FavoritesTabView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ private struct FavoriteItemContextMenu: View {
300300
Button {
301301
coordinator?.insertFavorite(favorite)
302302
} label: {
303-
Label(String(localized: "Insert in Editor"), systemImage: "text.insert")
303+
Label(String(localized: "Insert in Editor"), systemImage: "square.and.pencil")
304304
}
305305

306306
Button {

0 commit comments

Comments
 (0)