Live video on the AT Protocol

add login back

+12 -1
+12 -1
js/app/src/router.tsx
··· 26 26 } from "@streamplace/components"; 27 27 import { Provider, Settings } from "components"; 28 28 import AQLink from "components/aqlink"; 29 + import Login from "components/login/login"; 29 30 import LoginModal from "components/login/login-modal"; 30 31 import { AboutCategorySettings } from "components/settings/about-category-settings"; 31 32 import { AccountCategorySettings } from "components/settings/account-category-settings"; ··· 144 145 KeyManagement: undefined; 145 146 GoLive: undefined; 146 147 LiveDashboard: undefined; 148 + Login: undefined; 147 149 AVSync: undefined; 148 150 AppReturn: { scheme: string }; 149 151 About: undefined; ··· 197 199 KeyManagement: "key-management", 198 200 GoLive: "golive", 199 201 LiveDashboard: "live", 202 + Login: "login", 200 203 AVSync: "sync-test", 201 204 AppReturn: "app-return/:scheme", 202 205 About: "about", ··· 733 736 drawerItemStyle: { display: "none" }, 734 737 }} 735 738 /> 736 - 739 + <Drawer.Screen 740 + name="Login" 741 + component={Login} 742 + options={{ 743 + drawerLabel: () => null, 744 + drawerItemStyle: { display: "none" }, 745 + headerShown: false, 746 + }} 747 + /> 737 748 <Drawer.Screen 738 749 name="PopoutChat" 739 750 component={PopoutChat}