Fix colon

This commit is contained in:
Elaina Martineau 2019-09-10 23:34:34 -06:00
parent b82e652361
commit 1ae3d2f6ca
No known key found for this signature in database
GPG key ID: CDAFD6BD0C3C65E3

View file

@ -23,7 +23,7 @@ ReactDOM.render(
<Route path='/r/:subreddit/comments/:threadID' component={Thread} />
<Route path='/r/:subreddit' component={Subreddit} />
<Redirect from='/user/:username/comments/:threadID/:junk/:commentID'
to='/r/u_username/comments/:threadID/:junk/:commentID' />
to='/r/u_:username/comments/:threadID/:junk/:commentID' />
<Redirect from='/user/:username/comments/:threadID' to='/r/u_:username/comments/:threadID' />
<Redirect from='/user/:username' to='/r/u_:username' />
<Route component={NotFound} />