mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
lint: Comma dangle
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user