Skip to content

Commit 30c9171

Browse files
authored
chore: fix lint (#157)
1 parent cd425d3 commit 30c9171

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

deno.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
"dist"
4444
],
4545
"unstable": [
46-
"byonm",
4746
"sloppy-imports",
4847
"bare-node-builtins",
4948
"unsafe-proto"

src/utils/UrlSaver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class UrlSaver {
2222
}
2323

2424
function updateLocationHash(locationHash: string) {
25-
window.history.replaceState(undefined, "", `#${locationHash}`);
25+
history.replaceState(undefined, "", `#${locationHash}`);
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)