From dda92bd41f4bee11e2cc5de265ce4fbf5221f1ff Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Wed, 20 Sep 2023 13:10:36 +0200 Subject: autoformat with eslint --- webAO/client/sender/sendIC.ts | 2 +- webAO/client/sender/sendServer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'webAO/client/sender') diff --git a/webAO/client/sender/sendIC.ts b/webAO/client/sender/sendIC.ts index 9064115..ca8984f 100644 --- a/webAO/client/sender/sendIC.ts +++ b/webAO/client/sender/sendIC.ts @@ -2,7 +2,7 @@ import { extrafeatures } from "../../client"; import { escapeChat } from "../../encoding"; import {client} from '../../client' import queryParser from "../../utils/queryParser"; -let {mode} = queryParser() +const {mode} = queryParser() /** * Sends an in-character chat message. diff --git a/webAO/client/sender/sendServer.ts b/webAO/client/sender/sendServer.ts index 7678381..ae95480 100644 --- a/webAO/client/sender/sendServer.ts +++ b/webAO/client/sender/sendServer.ts @@ -1,6 +1,6 @@ import { client } from "../../client"; import queryParser from "../../utils/queryParser"; -let { mode } = queryParser() +const { mode } = queryParser() /** * Hook for sending messages to the server * @param {string} message the message to send -- cgit