We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3289005 commit d22a7f2Copy full SHA for d22a7f2
client/src/templates/Challenges/projects/backend/Show.tsx
@@ -218,9 +218,9 @@ class BackEnd extends Component<BackEndProps> {
218
} = this.props;
219
220
const isChallengeComplete = tests.every(test => test.pass && !test.err);
221
- const submitBtnLabel: string = !isChallengeComplete ? (
222
- `${t('buttons.run-test')}${testsRunning ? ' ...' : ''}`
223
- ) : t('buttons.submit-and-go');
+ const submitBtnLabel: string = !isChallengeComplete
+ ? `${t('buttons.run-test')}${testsRunning ? ' ...' : ''}`
+ : t('buttons.submit-and-go');
224
225
const blockNameTitle = `${t(
226
`intro:${superBlock}.blocks.${block}.title`
0 commit comments