Skip to content

Commit

Permalink
Add some missing key props
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielee committed Jun 21, 2022
1 parent 9388dfe commit d8ccb7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/renderer/components/animator/Animator/Animator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ const Animator = ({ take }: AnimatorProps): JSX.Element => {
<TabGroup
titles={["Capture", "Guides", "X-Sheet", "Media"]}
tabs={[
<CaptureTab />,
<CaptureTab key="capture" />,

<Tab>
<Tab key="guides">
<SidebarBlock title="Guides" titleIcon={IconName.GUIDES}>
Guides
</SidebarBlock>
</Tab>,

<Tab>
<Tab key="x-sheet">
<SidebarBlock title="X-Sheet" titleIcon={IconName.GUIDES}>
X-Sheet
</SidebarBlock>
</Tab>,

<MediaTab take={take} />,
<MediaTab key="media" take={take} />,
]}
/>
</Sidebar>
Expand Down

0 comments on commit d8ccb7f

Please sign in to comment.