style(serwersms): add missing trailing commas

Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
This commit is contained in:
kffl 2021-11-27 13:16:17 +01:00 committed by GitHub
parent c1267e9b3b
commit 186c11540f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ class SerwerSMS extends NotificationProvider {
"password": notification.serwersmsPassword,
"phone": notification.serwersmsPhoneNumber,
"text": msg.replace(/[^\x00-\x7F]/g, ""),
"sender": notification.serwersmsSenderName
"sender": notification.serwersmsSenderName,
};
let resp = await axios.post("https://api2.serwersms.pl/messages/send_sms", data, config);

View file

@ -54,7 +54,7 @@ const NotificationFormList = {
"matrix": Matrix,
"DingDing": DingDing,
"Bark": Bark,
"serwersms": SerwerSMS
"serwersms": SerwerSMS,
}
export default NotificationFormList