i18n: Upgrade translations from crowdin (681bfc57). (verify)
[ProtonMail-WebClient.git] / applications / verify / src / app / 0.tsx
blob3d45c4b99b9ef6a5016abe0da9a7c06598a74d2e
1 // BigInt is not important to the verify app, however there are some statically defined constants of BigInt in pmcrypto
2 // This is a patch to avoid it erroring out on "BigInt is not defined".
3 // Why is pmcrypto even imported in verify?
4 if (!('BigInt' in window)) {
5     // @ts-ignore
6     window.BigInt = () => {};