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/timeline/TimelineCard.tsx | |
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/timeline/TimelineCard.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline/TimelineCard.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/timeline/TimelineCard.tsx b/FrontEnd/src/app/views/timeline/TimelineCard.tsx index f2aca579..0cb908cc 100644 --- a/FrontEnd/src/app/views/timeline/TimelineCard.tsx +++ b/FrontEnd/src/app/views/timeline/TimelineCard.tsx @@ -9,9 +9,8 @@ import TimelineDeleteDialog from "./TimelineDeleteDialog"; const TimelineCard: React.FC<TimelinePageCardProps> = (props) => { const { timeline } = props; - const [dialog, setDialog] = React.useState< - "member" | "property" | "delete" | null - >(null); + const [dialog, setDialog] = + React.useState<"member" | "property" | "delete" | null>(null); return ( <> |