Update dependencies and version

This commit is contained in:
2024-12-15 18:43:06 +01:00
parent db0ccd9b56
commit 67e03eafaa
13 changed files with 2555 additions and 2793 deletions
+2 -1
View File
@@ -32,8 +32,9 @@ export async function unpack(packed: string): Promise<string> {
async function runInPageContext<T>(toExecute: string): Promise<T | null> {
// test that we are running with the allow-scripts permission
try {
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
window.sessionStorage;
} catch (ignore) {
} catch {
return null;
}