Skip to content

Commit

Permalink
eslint-fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
barisgul15 committed Dec 19, 2023
1 parent f002526 commit 8da3646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/ts/components/popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function popupContext(streamId: number): AlpineComponent {
}

export function closeChatOnEscapePressed() {
document.addEventListener("keyup", function(event) {
document.addEventListener("keyup", function (event) {
if (event.key === "Escape") {
window.close();
}
Expand Down

0 comments on commit 8da3646

Please sign in to comment.