diff --git a/app/ide-desktop/lib/dashboard/src/authentication/src/dashboard/components/dashboard.tsx b/app/ide-desktop/lib/dashboard/src/authentication/src/dashboard/components/dashboard.tsx index 81ce42f59320..9a7e6afddc8b 100644 --- a/app/ide-desktop/lib/dashboard/src/authentication/src/dashboard/components/dashboard.tsx +++ b/app/ide-desktop/lib/dashboard/src/authentication/src/dashboard/components/dashboard.tsx @@ -1,20 +1,19 @@ /** @file Main dashboard component, responsible for listing user's projects as well as other * interactive components. */ -import * as auth from '../../authentication/providers/auth' - // ================= // === Dashboard === // ================= function Dashboard() { - const { signOut } = auth.useAuth() - const { accessToken } = auth.useFullUserSession() return ( <> -
Access token: {accessToken}
- + {/* These are placeholders. When implementing a feature, + * please replace the appropriate placeholder with the actual element.*/} + + + + > ) } diff --git a/app/ide-desktop/lib/dashboard/src/index.tsx b/app/ide-desktop/lib/dashboard/src/index.tsx index 6abe7b76c908..5bbbcfdbe2b4 100644 --- a/app/ide-desktop/lib/dashboard/src/index.tsx +++ b/app/ide-desktop/lib/dashboard/src/index.tsx @@ -16,6 +16,10 @@ const ESBUILD_EVENT_NAME = 'change' // === Live reload === // =================== +import * as authentication from 'enso-authentication' + +import * as platform from './authentication/src/platform' + if (IS_DEV_MODE) { new EventSource(ESBUILD_PATH).addEventListener(ESBUILD_EVENT_NAME, () => { location.reload()