mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Fix workspace type
This commit is contained in:
@@ -67,7 +67,7 @@ export default function Layout({ children }: LayoutProps) {
|
||||
|
||||
try {
|
||||
const workspaces = await getWorkspaces();
|
||||
const currentWorkspaces = (workspaces as unknown as any[]).map((workspace: any) => workspace.name);
|
||||
const currentWorkspaces = workspaces.map((workspace) => workspace.name);
|
||||
if (!currentWorkspaces.includes(workspaceName)) {
|
||||
const newWorkspace = await createWorkspace({
|
||||
workspaceName,
|
||||
|
||||
@@ -6,7 +6,6 @@ interface Workspaces {
|
||||
name: string;
|
||||
organization: string;
|
||||
}
|
||||
[];
|
||||
|
||||
/**
|
||||
* This route lets us get the workspaces of a certain user
|
||||
@@ -20,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: Workspaces[] };
|
||||
return data.workspaces;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user