feat: custom workspace slugs

This commit is contained in:
Henry
2025-01-23 22:22:29 +00:00
parent 0bd23d24ac
commit f78dd07c38
14 changed files with 57 additions and 58 deletions

View File

@@ -13,10 +13,10 @@ interface WorkspaceContextProps {
interface Workspace {
name: string;
description: string | null;
description: string | null | undefined;
publicId: string;
slug: string;
plan: "free" | "pro" | "enterprise";
slug: string | undefined;
plan: "free" | "pro" | "enterprise" | undefined;
}
const initialWorkspace: Workspace = {