From fe0cbd32b259f4bcf5c22660cfc01965fb32e9e8 Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Sat, 6 Jun 2026 10:38:34 +0800 Subject: [PATCH] fix: use correct i18n key path for noToolsFound in tool palette --- apps/web/src/components/tools/tool-palette.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/tools/tool-palette.tsx b/apps/web/src/components/tools/tool-palette.tsx index 418b4d27..aec8253f 100644 --- a/apps/web/src/components/tools/tool-palette.tsx +++ b/apps/web/src/components/tools/tool-palette.tsx @@ -75,7 +75,9 @@ export function ToolPalette({ onAddStep, className }: ToolPaletteProps) {
{availableTools.length === 0 ? ( -

{t.common.noToolsFound}

+

+ {t.fullscreenGrid.noToolsFound} +

) : isSearching ? (
{availableTools.map((tool) => (