diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-05-10 15:12:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 15:12:49 +0000 |
commit | fa31396596915490e5447336920b3efe5d05f778 (patch) | |
tree | 6cb77791f80fc7a755e6bd95f81d76c11e21c6c0 /FrontEnd/src/app/views/home | |
parent | 083f93b590dce0867f2c4752c2a1d9a719fca147 (diff) | |
parent | 5dcc741b5ef4391969532e1af3cc4a15bfad6000 (diff) | |
download | timeline-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/home')
-rw-r--r-- | FrontEnd/src/app/views/home/index.tsx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/FrontEnd/src/app/views/home/index.tsx b/FrontEnd/src/app/views/home/index.tsx index 0eca23ee..484260b0 100644 --- a/FrontEnd/src/app/views/home/index.tsx +++ b/FrontEnd/src/app/views/home/index.tsx @@ -19,12 +19,10 @@ const HomeV2: React.FC = () => { const [navText, setNavText] = React.useState<string>(""); - const [highlightTimelineState, setHighlightTimelineState] = React.useState< - "loading" | "done" | "error" - >("loading"); - const [highlightTimelines, setHighlightTimelines] = React.useState< - HttpTimelineInfo[] | undefined - >(); + const [highlightTimelineState, setHighlightTimelineState] = + React.useState<"loading" | "done" | "error">("loading"); + const [highlightTimelines, setHighlightTimelines] = + React.useState<HttpTimelineInfo[] | undefined>(); React.useEffect(() => { if (highlightTimelineState === "loading") { |