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 0ae44d9 commit f4d6588Copy full SHA for f4d6588
1 file changed
packages/extension/src/libs/utils/screening.ts
@@ -5,9 +5,9 @@ const isGeoRestricted = async (): Promise<boolean> => {
5
const json = await res.json();
6
return json.isRestricted;
7
}
8
- return false;
+ return true;
9
})
10
- .catch(() => false);
+ .catch(() => true);
11
};
12
13
const walletCache: Record<string, boolean> = {};
0 commit comments