From a96d35551258f051d6e78a3f8c03a179d064ff6d Mon Sep 17 00:00:00 2001 From: somebody1234 Date: Tue, 11 Apr 2023 18:40:47 +1000 Subject: [PATCH] Add dashboard skeleton (#6005) - Removes placeholder dashboard in preparation for the actual dashboard implementation. --- .../src/dashboard/components/dashboard.tsx | 13 ++++++------- app/ide-desktop/lib/dashboard/src/index.tsx | 4 ++++ 2 files changed, 10 insertions(+), 7 deletions(-) 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 ( <> -

This is a placeholder page for the cloud dashboard.

-

Access token: {accessToken}

- + {/* These are placeholders. When implementing a feature, + * please replace the appropriate placeholder with the actual element.*/} +