aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/timeline-common/Timeline.tsx
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-05-10 15:12:49 +0000
committerGitHub <noreply@github.com>2021-05-10 15:12:49 +0000
commitfa31396596915490e5447336920b3efe5d05f778 (patch)
tree6cb77791f80fc7a755e6bd95f81d76c11e21c6c0 /FrontEnd/src/app/views/timeline-common/Timeline.tsx
parent083f93b590dce0867f2c4752c2a1d9a719fca147 (diff)
parent5dcc741b5ef4391969532e1af3cc4a15bfad6000 (diff)
downloadtimeline-fa31396596915490e5447336920b3efe5d05f778.tar.gz
timeline-fa31396596915490e5447336920b3efe5d05f778.tar.bz2
timeline-fa31396596915490e5447336920b3efe5d05f778.zip
Merge pull request #516 from crupest/dependabot/npm_and_yarn/FrontEnd/prettier-2.3.0
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/Timeline.tsx')
-rw-r--r--FrontEnd/src/app/views/timeline-common/Timeline.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/Timeline.tsx b/FrontEnd/src/app/views/timeline-common/Timeline.tsx
index 72d38ffd..32d0bdd5 100644
--- a/FrontEnd/src/app/views/timeline-common/Timeline.tsx
+++ b/FrontEnd/src/app/views/timeline-common/Timeline.tsx
@@ -22,9 +22,10 @@ export interface TimelineProps {
const Timeline: React.FC<TimelineProps> = (props) => {
const { timelineName, className, style, reloadKey, onReload } = props;
- const [state, setState] = React.useState<
- "loading" | "loaded" | "offline" | "notexist" | "forbid" | "error"
- >("loading");
+ const [state, setState] =
+ React.useState<
+ "loading" | "loaded" | "offline" | "notexist" | "forbid" | "error"
+ >("loading");
const [posts, setPosts] = React.useState<HttpTimelinePostInfo[]>([]);
React.useEffect(() => {