sdy

remove support route, change roomlist route

...@@ -11,7 +11,7 @@ import News from "./News"; ...@@ -11,7 +11,7 @@ import News from "./News";
11 11
12 const LoggedInRoutes = () => ( 12 const LoggedInRoutes = () => (
13 <Switch> 13 <Switch>
14 - <Route path="/room-list" component={RoomList} /> 14 + <Route path="/roomlist" component={RoomList} />
15 </Switch> 15 </Switch>
16 ); 16 );
17 17
...@@ -23,7 +23,6 @@ const LoggedOutRoutes = () => ( ...@@ -23,7 +23,6 @@ const LoggedOutRoutes = () => (
23 <Route path="/forum" component={Forum} /> 23 <Route path="/forum" component={Forum} />
24 <Route path="/features" component={Features} /> 24 <Route path="/features" component={Features} />
25 <Route path="/news" component={News} /> 25 <Route path="/news" component={News} />
26 - <Route path="/support" component={Main} />
27 </Switch> 26 </Switch>
28 ); 27 );
29 28
......