diff options
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 2601ef45..36053477 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -161,7 +161,7 @@ export default class App extends React.Component { <Route exact path="/pm/:user" render={(props) => <Chat ref={this.pm} visitor={user} {...props} />} /> <Route exact path="/:user/friends" render={(props) => <Friends visitor={user} {...props} />} /> <Route exact path="/:user/readers" render={(props) => <Readers visitor={user} {...props} />} /> - <Route exact path="/:user" render={(props) => <Blog visitor={user} {...props} />} /> + <Route exact path="/:user" render={(props) => <Blog key={props.match.params.user} visitor={user} {...props} />} /> <Route exact path="/tag/:tag" render={(props) => <Tag visitor={user} {...props} />} /> <Route exact path="/:user/:mid" render={(props) => <Thread ref={this.thread} visitor={user} {...props} />} /> </Switch> |