We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 848a53f commit cde49d9Copy full SHA for cde49d9
src/contents/gitpod-dashboard.ts
@@ -17,7 +17,7 @@ export const config: PlasmoCSConfig = {
17
const storage = new Storage();
18
19
const automaticallyUpdateEndpoint = async () => {
20
- if ((await storage.get<boolean>(STORAGE_AUTOMATICALLY_DETECT_GITPOD)) === false) {
+ if ((await storage.get<boolean>(STORAGE_AUTOMATICALLY_DETECT_GITPOD)) !== true) {
21
return;
22
}
23
src/popup.tsx
@@ -87,7 +87,7 @@ function PopupContent() {
87
88
const [enableInstanceHopping, setEnableInstanceHopping] = useStorage<boolean>(
89
STORAGE_AUTOMATICALLY_DETECT_GITPOD,
90
- true,
+ false,
91
);
92
93
return (
0 commit comments