aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/services/timeline.ts
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/services/timeline.ts')
-rw-r--r--FrontEnd/src/services/timeline.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/services/timeline.ts b/FrontEnd/src/services/timeline.ts
index 58dc9be6..707c956f 100644
--- a/FrontEnd/src/services/timeline.ts
+++ b/FrontEnd/src/services/timeline.ts
@@ -22,7 +22,7 @@ export const timelineVisibilityTooltipTranslationMap: Record<
export function getTimelinePostUpdate$(
owner: string,
- timeline: string
+ timeline: string,
): Observable<{ update: boolean; state: HubConnectionState }> {
return new Observable((subscriber) => {
subscriber.next({
@@ -76,7 +76,7 @@ export function getTimelinePostUpdate$(
return connection.invoke(
"SubscribeTimelinePostChangeV2",
owner,
- timeline
+ timeline,
);
});