Skip to content

Commit cde49d9

Browse files
committed
By default, do not instance hop
1 parent 848a53f commit cde49d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/contents/gitpod-dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const config: PlasmoCSConfig = {
1717
const storage = new Storage();
1818

1919
const automaticallyUpdateEndpoint = async () => {
20-
if ((await storage.get<boolean>(STORAGE_AUTOMATICALLY_DETECT_GITPOD)) === false) {
20+
if ((await storage.get<boolean>(STORAGE_AUTOMATICALLY_DETECT_GITPOD)) !== true) {
2121
return;
2222
}
2323

src/popup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function PopupContent() {
8787

8888
const [enableInstanceHopping, setEnableInstanceHopping] = useStorage<boolean>(
8989
STORAGE_AUTOMATICALLY_DETECT_GITPOD,
90-
true,
90+
false,
9191
);
9292

9393
return (

0 commit comments

Comments
 (0)