Skip to content

Commit

Permalink
prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mster115 committed Mar 8, 2023
1 parent 388ef6d commit 2a330e9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class AlterationQuiz extends Component {
setTimeout(() => navigate("/Lab7/Exercise/AlterationStart"));
}

handleContinue(){
handleContinue() {
const { actions } = this.props;
actions.updateState(EXERCISE_IDLE);
navigate("/Lab7/Exercise/ExerciseEnd")
navigate("/Lab7/Exercise/ExerciseEnd");
}

handleSubmitData(output, userId) {
Expand Down Expand Up @@ -59,13 +59,13 @@ class AlterationQuiz extends Component {
submitData={this.handleSubmitData.bind(this)}
/>
{this.state.showContinue && (
<button
<button
className="btn btn-primary text-black btn-xl text-uppercase tw-mt-4"
onClick={this.handleContinue.bind(this)}
key="start"
>
Continue
</button>
</button>
)}
</div>
);
Expand Down

0 comments on commit 2a330e9

Please sign in to comment.