From cb62cce8af7aa67f3bb36283cce8007a71749d10 Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Sat, 2 May 2026 06:05:24 +0100 Subject: [PATCH] Fix a spelling error --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index a0f60cc4..ba7ee6cc 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1030,7 +1030,7 @@ export function compileErrorMsg(error: any): void { handleError( // Don't log the generic placeholder error if that's all we have error instanceof Error && error.message.endsWith("Compile error") ? "" : error, - "Compilaton failed." + "Compilation failed." ); }