lint: Comma dangle

This commit is contained in:
Cohee
2023-12-02 22:06:57 +02:00
parent 08fedf3a96
commit 64a3564892
53 changed files with 388 additions and 384 deletions

View File

@ -512,7 +512,7 @@ async function saveQuickReplyPreset() {
const response = await fetch('/savequickreply', {
method: 'POST',
headers: getRequestHeaders(),
body: JSON.stringify(quickReplyPreset)
body: JSON.stringify(quickReplyPreset),
});
if (response.ok) {
@ -556,7 +556,7 @@ async function updateQuickReplyPreset() {
const response = await fetch('/savequickreply', {
method: 'POST',
headers: getRequestHeaders(),
body: JSON.stringify(quickReplyPreset)
body: JSON.stringify(quickReplyPreset),
});
if (response.ok) {