Skip to content

Commit

Permalink
No props needed for the upload tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonh committed Feb 16, 2024
1 parent dd8f913 commit 0606311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web/components/templates/homeFeed/AddLinkModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export function AddLinkModal(props: AddLinkModalProps): JSX.Element {
<Box css={{ width: '100%' }}>
{selectedTab == 'link' && <AddLinkTab {...props} />}
{selectedTab == 'feed' && <AddFeedTab {...props} />}
{selectedTab == 'opml' && <UploadOPMLTab {...props} />}
{selectedTab == 'pdf' && <UploadPDFTab {...props} />}
{selectedTab == 'opml' && <UploadOPMLTab />}
{selectedTab == 'pdf' && <UploadPDFTab />}
{selectedTab == 'import' && <UploadImportTab {...props} />}
</Box>
</VStack>
Expand Down

0 comments on commit 0606311

Please sign in to comment.