sdy

remove support route, change roomlist route

......@@ -11,7 +11,7 @@ import News from "./News";
const LoggedInRoutes = () => (
<Switch>
<Route path="/room-list" component={RoomList} />
<Route path="/roomlist" component={RoomList} />
</Switch>
);
......@@ -23,7 +23,6 @@ const LoggedOutRoutes = () => (
<Route path="/forum" component={Forum} />
<Route path="/features" component={Features} />
<Route path="/news" component={News} />
<Route path="/support" component={Main} />
</Switch>
);
......