Skip to content

Commit 66b4143

Browse files
Adam GoughAdam Gough
authored andcommitted
lint
1 parent 3aca1c9 commit 66b4143

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/lib/webhooks/teams-subscriptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export async function createMicrosoftTeamsChatSubscription(
4343
if (listResponse.ok) {
4444
const data = await listResponse.json()
4545
const allSubscriptions = data.value || []
46-
const chatSubscriptions = allSubscriptions.filter((sub: any) =>
47-
sub.resource?.includes('/chats/') && sub.clientState === webhookData.id
46+
const chatSubscriptions = allSubscriptions.filter(
47+
(sub: any) => sub.resource?.includes('/chats/') && sub.clientState === webhookData.id
4848
)
4949

5050
for (const sub of chatSubscriptions) {

0 commit comments

Comments
 (0)