Skip to content

Commit fa3fa1d

Browse files
committed
Fix bad message and redundant information display
1 parent 3b93ae1 commit fa3fa1d

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

webapp/redux/middleware/middleware.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -340,16 +340,12 @@ export default (store) => (next) => (action) => {
340340
break;
341341
}
342342
case CREATE_NETWORK: {
343-
next(GeppettoActions.waitData('Instantiating the NetPyNE Model', GeppettoActions.layoutActions.SET_WIDGETS));
344-
345-
checkParametersThen(() => instantiateNetwork({}), false, "Creating the NetPyNE Model")
346-
343+
checkParametersThen(() => instantiateNetwork({}), false, "Instantiating the NetPyNE Model")
347344

348345
break;
349346
}
350347
case CREATE_SIMULATE_NETWORK: {
351-
352-
checkParametersThen(() => simulateNetwork({ allTrials: false }), false, "Creating and simulating the NetPyNE Model")
348+
checkParametersThen(() => simulateNetwork({ allTrials: false }), false, "Instantiating and simulating the NetPyNE Model")
353349

354350
break;
355351
}

0 commit comments

Comments
 (0)