diff --git a/components/dashboard/src/settings/Preferences.tsx b/components/dashboard/src/settings/Preferences.tsx index 7477477e851fd3..c85ab8c0db8971 100644 --- a/components/dashboard/src/settings/Preferences.tsx +++ b/components/dashboard/src/settings/Preferences.tsx @@ -18,7 +18,6 @@ import { getExperimentsClient } from "../experiments/client"; import SelectWorkspaceClass from "./selectClass"; type Theme = "light" | "dark" | "system"; -// type WorkspaceClass = "standard" | "XL"; export default function Preferences() { const { user } = useContext(UserContext); @@ -56,7 +55,6 @@ export default function Preferences() { const [isShowWorkspaceClasses, setIsShowWorkspaceClasses] = useState(false); (async () => { const showWorkspaceClasses = await getExperimentsClient().getValueAsync("workspace_classes", false, {}); - console.log("is enabled", showWorkspaceClasses); setIsShowWorkspaceClasses(showWorkspaceClasses); })(); diff --git a/components/ee/payment-endpoint/src/accounting/account-service.spec.db.ts b/components/ee/payment-endpoint/src/accounting/account-service.spec.db.ts index 098111cf55aab7..37bee7904aced9 100644 --- a/components/ee/payment-endpoint/src/accounting/account-service.spec.db.ts +++ b/components/ee/payment-endpoint/src/accounting/account-service.spec.db.ts @@ -78,10 +78,6 @@ const end = new Date(Date.UTC(2000, 2, 1)).toISOString(); allowsChangelogMail: true, allowsDevXMail: true }, - workspaceClasses: { - regular: "default", - prebuild: "default," - }, } }); await this.workspaceDb.store({ diff --git a/components/gitpod-db/src/typeorm/user-db-impl.ts b/components/gitpod-db/src/typeorm/user-db-impl.ts index da290e67e47f5b..c423aafd10f128 100644 --- a/components/gitpod-db/src/typeorm/user-db-impl.ts +++ b/components/gitpod-db/src/typeorm/user-db-impl.ts @@ -109,10 +109,6 @@ export class TypeORMUserDBImpl implements UserDB { allowsDevXMail: true, allowsOnboardingMail: true, }, - workspaceClasses: { - regular: "default", - prebuild: "default", - }, }, }; await this.storeUser(user);