Skip to content

Commit 1ebbf1a

Browse files
committed
Fix panic link not working properly
1 parent 987a36a commit 1ebbf1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/global.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ document.addEventListener("astro:page-load", () => {
118118
Typed.length === PanicKeys.length &&
119119
PanicKeys.every((key, index) => key === Typed[index])
120120
) {
121-
window.location.href = encodeURIComponent(PanicLink);
121+
window.location.href = PanicLink;
122122
Typed = [];
123123
}
124124
});

0 commit comments

Comments
 (0)