fix: use correct i18n key path for noToolsFound in tool palette

This commit is contained in:
SnapOtter
2026-06-06 10:38:34 +08:00
parent 91c66eb4be
commit fe0cbd32b2
@@ -75,7 +75,9 @@ export function ToolPalette({ onAddStep, className }: ToolPaletteProps) {
<div className="flex-1 overflow-y-auto px-3 pb-3">
{availableTools.length === 0 ? (
<p className="text-sm text-muted-foreground text-center py-8">{t.common.noToolsFound}</p>
<p className="text-sm text-muted-foreground text-center py-8">
{t.fullscreenGrid.noToolsFound}
</p>
) : isSearching ? (
<div className="space-y-1">
{availableTools.map((tool) => (