Skip to content

Commit d255e10

Browse files
committed
chore: format code and fix lint issues [skip ci]
1 parent 07a46b3 commit d255e10

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/lib/notifications/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ export const onNotification = (push: INotification): void => {
2323
if (push?.payload?.ejson) {
2424
try {
2525
const notification = EJSON.parse(push.payload.ejson);
26-
store.dispatch(deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' }));
26+
store.dispatch(
27+
deepLinkingClickCallPush({ ...notification, event: identifier === 'ACCEPT_ACTION' ? 'accept' : 'decline' })
28+
);
2729
return;
2830
} catch (e) {
2931
console.warn('Failed to parse video conf notification:', e);

0 commit comments

Comments
 (0)