fix: use correct link in create from template button (#2253)

This commit is contained in:
Garrett Delfosse
2022-06-10 13:38:43 -05:00
committed by GitHub
parent f562b74fa1
commit 46da59a6b5
@@ -214,7 +214,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({ loading, works
message={Language.emptyCreateWorkspaceMessage}
description={Language.emptyCreateWorkspaceDescription}
cta={
<Link underline="none" component={RouterLink} to="/workspaces/new">
<Link underline="none" component={RouterLink} to="/templates">
<Button startIcon={<AddCircleOutline />}>{Language.createFromTemplateButton}</Button>
</Link>
}