1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Merge branch 'main' into feat/addons

This commit is contained in:
Youssef Khedher 2022-02-01 14:13:04 +01:00 committed by GitHub
commit 7bf7e8a47f

View File

@ -17,7 +17,7 @@ const ListPlaceholder = ({ text, link, linkText }: IListPlaceholderProps) => {
{text}
<ConditionallyRender
condition={Boolean(link && linkText)}
show={<Link to="/features/create">Add your first toggle</Link>}
show={<Link to={link}>Add your first toggle</Link>}
/>
</ListItem>
);