fix: worker use only i18n keys instead of full i18n

This commit is contained in:
2026-09-13 12:44:51 +05:00
parent 49d0a9444e
commit c2f3838485
12 changed files with 111 additions and 38 deletions
@@ -16,6 +16,7 @@
fileResult?: FileResult | null;
textSource?: string;
textResult?: string | null;
textVars?: Record<string, string | number>;
running?: boolean;
error?: string;
onupload: (file: File) => void;
@@ -34,6 +35,7 @@
fileResult = null,
textSource = "",
textResult = null,
textVars = undefined,
running = false,
error = "",
onupload,
@@ -106,6 +108,7 @@
{result}
{fileResult}
{textResult}
{textVars}
{toolId}
{running}
oncopy={oncopytext}