Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelfangjw committed Jun 24, 2021
1 parent 89ccf82 commit fde4567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
The Source Academy (<https://source-academy.github.io/>) is an immersive online experiential environment for learning programming. It is developed by a community of learners (also called "Source Academy") who use the book [Structure and Interpretation of Computer Programs, JavaScript Adaptation](https://source-academy.github.io/sicpjs) (SICP JS). This repository houses the sources for the frontend of the Source Academy, written in ReactJS with Redux.

## Features

- Playground to write and test programs
- Built-in Debugger and Visualizer to interact with your programs
- Missions/Quests/Contests to solve challenging problems while learning about programming fundamentals
Expand Down
2 changes: 1 addition & 1 deletion src/commons/application/Application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const Application: React.FC<ApplicationProps> = props => {
/>
)}
<Route path="/callback/github" component={GitHubCallback} />
<Redirect from="/interactive-sicp/:section?" to="/sicpjs/:section?"/>
<Redirect from="/interactive-sicp/:section?" to="/sicpjs/:section?" />
<Route exact path="/sicpjs" render={redirectToSicp} />
<Route path="/sicpjs/:section" component={Sicp} />
{fullPaths}
Expand Down

0 comments on commit fde4567

Please sign in to comment.