Skip to content

Commit f157a02

Browse files
Furistoroboquat
authored andcommitted
Remove defaults
1 parent 9fb6f93 commit f157a02

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

components/dashboard/src/settings/Preferences.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { getExperimentsClient } from "../experiments/client";
1818
import SelectWorkspaceClass from "./selectClass";
1919

2020
type Theme = "light" | "dark" | "system";
21-
// type WorkspaceClass = "standard" | "XL";
2221

2322
export default function Preferences() {
2423
const { user } = useContext(UserContext);
@@ -56,7 +55,6 @@ export default function Preferences() {
5655
const [isShowWorkspaceClasses, setIsShowWorkspaceClasses] = useState<boolean>(false);
5756
(async () => {
5857
const showWorkspaceClasses = await getExperimentsClient().getValueAsync("workspace_classes", false, {});
59-
console.log("is enabled", showWorkspaceClasses);
6058
setIsShowWorkspaceClasses(showWorkspaceClasses);
6159
})();
6260

components/ee/payment-endpoint/src/accounting/account-service.spec.db.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@ const end = new Date(Date.UTC(2000, 2, 1)).toISOString();
7878
allowsChangelogMail: true,
7979
allowsDevXMail: true
8080
},
81-
workspaceClasses: {
82-
regular: "default",
83-
prebuild: "default,"
84-
},
8581
}
8682
});
8783
await this.workspaceDb.store({

components/gitpod-db/src/typeorm/user-db-impl.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ export class TypeORMUserDBImpl implements UserDB {
116116
allowsDevXMail: true,
117117
allowsOnboardingMail: true,
118118
},
119-
workspaceClasses: {
120-
regular: "default",
121-
prebuild: "default",
122-
},
123119
},
124120
};
125121
await this.storeUser(user);

0 commit comments

Comments
 (0)