aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/timeline/Timeline.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/pages/timeline/Timeline.tsx')
-rw-r--r--FrontEnd/src/pages/timeline/Timeline.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/pages/timeline/Timeline.tsx b/FrontEnd/src/pages/timeline/Timeline.tsx
index 4fe5c521..1d8e28d5 100644
--- a/FrontEnd/src/pages/timeline/Timeline.tsx
+++ b/FrontEnd/src/pages/timeline/Timeline.tsx
@@ -1,5 +1,5 @@
import { useState, useEffect } from "react";
-import classnames from "classnames";
+import classNames from "classnames";
import { HubConnectionState } from "@microsoft/signalr";
import {
@@ -166,7 +166,7 @@ export function Timeline(props: TimelineProps) {
/>
)}
{posts && (
- <div className={classnames("timeline", className)}>
+ <div className={classNames("timeline", className)}>
{timeline?.postable && (
<TimelinePostEdit timeline={timeline} onPosted={updatePosts} />
)}