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

@@ -478,7 +478,7 @@ export async function renameGroupMember(oldAvatar, newAvatar, newName) {
async function getGroups() {
const response = await fetch('/getgroups', {
method: 'POST',
headers: getRequestHeaders()
headers: getRequestHeaders(),
});
if (response.ok) {
@@ -644,7 +644,7 @@ async function generateGroupWrapper(by_auto_mode, type = null, params = {}) {
if (typingIndicator.length === 0 && !isStreamingEnabled()) {
typingIndicator = $(
'#typing_indicator_template .typing_indicator'
'#typing_indicator_template .typing_indicator',
).clone();
typingIndicator.hide();
$('#chat').append(typingIndicator);