Skip to content

Commit ee6c9a1

Browse files
committed
fix(workspaces): keep tab layout type internal
1 parent 9df8830 commit ee6c9a1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

extensions/workspaces/src/schema.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,13 @@ export type WorkspaceWidget = {
3030
bindings?: Record<string, WorkspaceBinding>;
3131
props?: JsonValue;
3232
};
33-
export type WorkspaceTabLayout = "grid" | "full";
3433
export type WorkspaceTab = {
3534
slug: string;
3635
title: string;
3736
icon?: string;
3837
hidden: boolean;
3938
/** Default grid, or a single app-like widget without grid chrome. */
40-
layout?: WorkspaceTabLayout;
39+
layout?: "grid" | "full";
4140
createdBy: WorkspaceActor;
4241
widgets: WorkspaceWidget[];
4342
};

0 commit comments

Comments
 (0)