From cbe5409ae33d3212b847d54c0394c1af78ba9355 Mon Sep 17 00:00:00 2001 From: Ngo Quoc Dat Date: Sun, 10 May 2026 14:23:04 +0700 Subject: [PATCH] fix(quick-switcher): use queryHistoryManager after queryHistoryStorage was removed from AppServices --- TablePro/ViewModels/QuickSwitcherViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TablePro/ViewModels/QuickSwitcherViewModel.swift b/TablePro/ViewModels/QuickSwitcherViewModel.swift index dd6784d6c..3b447c389 100644 --- a/TablePro/ViewModels/QuickSwitcherViewModel.swift +++ b/TablePro/ViewModels/QuickSwitcherViewModel.swift @@ -110,7 +110,7 @@ internal final class QuickSwitcherViewModel { } // Recent query history (last 50) - let historyEntries = await services.queryHistoryStorage.fetchHistory( + let historyEntries = await services.queryHistoryManager.fetchHistory( limit: 50, connectionId: connectionId )