Skip to content

Commit 6dffdf4

Browse files
committed
prettier
1 parent d55c3b5 commit 6dffdf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/faas/v0/context.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ export class WebsocketNotificationContext<T> extends TriggerContext<
635635
).reduce(
636636
(acc, [key, [val]]) => ({
637637
...acc,
638-
[key]: val.map((v) => decodeURIComponent(v))
638+
[key]: val.map((v) => decodeURIComponent(v)),
639639
}),
640640
{} as Record<string, string[]>
641641
);
@@ -646,7 +646,7 @@ export class WebsocketNotificationContext<T> extends TriggerContext<
646646
trigger.getWebsocket().getSocket(),
647647
trigger.getWebsocket().getEvent(),
648648
trigger.getWebsocket().getConnectionid(),
649-
query,
649+
query
650650
);
651651

652652
ctx.response = {
@@ -678,15 +678,15 @@ export class WebsocketNotificationRequest<T> extends AbstractRequest<T> {
678678
public readonly socket: string;
679679
public readonly notificationType: WebsocketNotificationType;
680680
public readonly connectionId: string;
681-
public readonly query: Record<string, string[]>
681+
public readonly query: Record<string, string[]>;
682682

683683
constructor(
684684
data: string | Uint8Array,
685685
traceContext: api.Context,
686686
socket: string,
687687
notificationType: WebsocketNotificationType,
688688
connectionId: string,
689-
query: Record<string, string[]>,
689+
query: Record<string, string[]>
690690
) {
691691
super(data, traceContext);
692692

0 commit comments

Comments
 (0)