Skip to content

Commit

Permalink
fix: return empty div if no package
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Oct 21, 2020
1 parent 25ad34b commit 654ae78
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/blocks/src/EditPage/EditPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ export const EditPage: FC = () => {
</Box>
</ExternalLink>
</Box>
) : null;
) : (
<div />
);
};

0 comments on commit 654ae78

Please sign in to comment.