Skip to content

Commit

Permalink
fix link properly this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Diehl committed Mar 3, 2023
1 parent a5ab4f1 commit 3b08363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/QuickStart/Tutorial_Params.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ class Tutorial_Params extends Component {

<Typography align="left" variant="h6">
<span className='bold'>Continue to the next step of the tutorial...</span><br/>
<Link onClick={ () => this.setState({'showPage': 'tutorial_submit'}) } className={classes.icon}>Submit your Run</Link><br/>
<Link onClick={ () => this.props.updateParentState({'showPage': 'tutorial_submit'}) } className={classes.icon}>Submit your Run</Link><br/>
</Typography>
</Grid>
</Grid>
<GenericDialog
name={'Under Construction!'}
open={this.state.showConstructionAlert}
onClose={ () => this.props.updateParentState({"showConstructionAlert": false}) }
onClose={ () => this.setState({"showConstructionAlert": false}) }
content=<Typography>Coming Soon; Thank you for your interest!</Typography>
/>
</div>
Expand Down

0 comments on commit 3b08363

Please sign in to comment.