Skip to content

Commit 8fa5df6

Browse files
committed
style: fix prettier formatting errors
1 parent a23e408 commit 8fa5df6

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

apps/meteor/app/threads/server/functions.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,7 @@ export async function reply({ tmid }: { tmid?: string }, message: IMessage, pare
1717

1818
const { toAll, toHere, mentionIds } = await getMentions(message);
1919

20-
const filterUsersInRoom = async ({
21-
roomId,
22-
userIds,
23-
room,
24-
}: {
25-
roomId: string;
26-
userIds: string[];
27-
room: IRoom | null;
28-
}) => {
20+
const filterUsersInRoom = async ({ roomId, userIds, room }: { roomId: string; userIds: string[]; room: IRoom | null }) => {
2921
try {
3022
if (!userIds.length || !room) {
3123
return [];
@@ -137,4 +129,4 @@ export const readThread = async ({ userId, rid, tmid }: { userId: string; rid: s
137129
}
138130

139131
await NotificationQueue.clearQueueByUserId(userId);
140-
};
132+
};

0 commit comments

Comments
 (0)