1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

fix: use correct path for create feature link (#650)

This commit is contained in:
olav 2022-02-01 12:43:37 +01:00 committed by GitHub
parent 35148e14d5
commit f4f8b15736

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>
);