From ad2a26611a53cca6b390a680ffd9199d70e663bb Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 6 Dec 2025 23:40:50 +0100 Subject: [PATCH] chore: move model reload to debug tab --- apps/macos/Sources/Clawdis/AppMain.swift | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/apps/macos/Sources/Clawdis/AppMain.swift b/apps/macos/Sources/Clawdis/AppMain.swift index b163ed3ad..3550c70a5 100644 --- a/apps/macos/Sources/Clawdis/AppMain.swift +++ b/apps/macos/Sources/Clawdis/AppMain.swift @@ -1517,19 +1517,10 @@ struct ConfigSettings: View { .foregroundStyle(.secondary) } - HStack(spacing: 10) { - Button { - Task { await self.loadModels() } - } label: { - Label(self.modelsLoading ? "Loading…" : "Reload models", systemImage: "arrow.clockwise") - } - .disabled(self.modelsLoading) - - if let modelError { - Text(modelError) - .font(.footnote) - .foregroundStyle(.secondary) - } + if let modelError { + Text(modelError) + .font(.footnote) + .foregroundStyle(.secondary) } } }