From 07499eaa7f9132c6fcf631583cf314d62397b36b Mon Sep 17 00:00:00 2001 From: Marson Kotovi4 <137284002+MarsonKotovi4@users.noreply.github.com> Date: Tue, 24 Dec 2024 15:04:19 +0200 Subject: [PATCH] Update circomPluginClient.ts --- apps/circuit-compiler/src/app/services/circomPluginClient.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/circuit-compiler/src/app/services/circomPluginClient.ts b/apps/circuit-compiler/src/app/services/circomPluginClient.ts index f9421eb528..ff3170f26e 100644 --- a/apps/circuit-compiler/src/app/services/circomPluginClient.ts +++ b/apps/circuit-compiler/src/app/services/circomPluginClient.ts @@ -502,9 +502,9 @@ export class CircomPluginClient extends PluginClient { const exists = await this.call('fileManager', 'exists', path) if (exists) return path - else throw new Error(`Report path ${path} do no exist in the Remix FileSystem`) + else throw new Error(`Report path ${path} does not exist in the Remix FileSystem`) } else { - throw new Error(`Report path ${path} do no exist in the Remix FileSystem`) + throw new Error(`Report path ${path} does not exist in the Remix FileSystem`) } } }