From 1212b5a9dbfbead4b58b692d3f09b250cb868727 Mon Sep 17 00:00:00 2001 From: Reginald Bondoc Date: Wed, 7 Dec 2022 22:23:47 +0100 Subject: [PATCH] Change name --- frontend/pages/api/workspace/getWorkspaces.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/pages/api/workspace/getWorkspaces.ts b/frontend/pages/api/workspace/getWorkspaces.ts index 01e38b83d..a77a04751 100644 --- a/frontend/pages/api/workspace/getWorkspaces.ts +++ b/frontend/pages/api/workspace/getWorkspaces.ts @@ -1,6 +1,6 @@ import SecurityClient from "~/utilities/SecurityClient"; -interface Workspaces { +interface Workspace { __v: number; _id: string; name: string; @@ -19,7 +19,7 @@ const getWorkspaces = () => { }, }).then(async (res) => { if (res?.status == 200) { - const data = (await res.json()) as unknown as { workspaces: Workspaces[] }; + const data = (await res.json()) as unknown as { workspaces: Workspace[] }; return data.workspaces; }