Update circomPluginClient.ts

pull/5573/head
Marson Kotovi4 2 months ago committed by Aniket
parent 3f319dc87b
commit 07499eaa7f
  1. 4
      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) const exists = await this.call('fileManager', 'exists', path)
if (exists) return 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 { } 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`)
} }
} }
} }

Loading…
Cancel
Save