File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/circuit-compiler/src/app/actions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { GROTH16_VERIFIER, PLONK_VERIFIER } from './constant'
5
5
import { extractNameFromKey , extractParentFromKey } from '@remix-ui/helper'
6
6
7
7
export const compileCircuit = async ( plugin : CircomPluginClient , appState : AppState ) => {
8
- if ( appState . status = == "compiling" ) {
8
+ if ( appState . status ! == "compiling" ) {
9
9
return console . log ( 'Existing circuit compilation in progress' )
10
10
}
11
11
@@ -23,7 +23,7 @@ export const computeWitness = async (
23
23
status : string ,
24
24
witnessValues : Record < string , string >
25
25
) => {
26
- if ( status = == "computing" ) {
26
+ if ( status ! == "computing" ) {
27
27
return console . log ( 'Existing witness computation in progress' )
28
28
}
29
29
You can’t perform that action at this time.
0 commit comments