Fix eslint error in push notification import

This commit is contained in:
Hafiz
2026-01-13 13:43:24 -06:00
parent 3a91fde01d
commit 1a9707445f
+1 -1
View File
@@ -1,6 +1,6 @@
import { mapInboxMessage, inboxModel } from '../../models/message';
import { getUserInfo, sendTxn as sendTxnEmail } from '../email'; // eslint-disable-line import/no-cycle
import { sendNotification as sendPushNotification } from '../pushNotifications';
import { sendNotification as sendPushNotification } from '../pushNotifications'; // eslint-disable-line import/no-cycle
export async function sentMessage (sender, receiver, message, translate) {
const fakeSending = sender.flags.chatShadowMuted;