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

fix: fix broken edit project link (#5147)

fix broken edit project link

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2023-10-25 15:23:53 +03:00 committed by GitHub
parent 6ffca07d51
commit d681e614ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@ export const MetaWidget: FC<IMetaWidgetProps> = ({ id, description }) => {
<ConditionallyRender
condition={!description}
show={
<WidgetFooterLink to={`/projects/${id}/edit`}>
<WidgetFooterLink to={`/projects/${id}/settings`}>
Add description
</WidgetFooterLink>
}