fix: cancel button on create-workspace page wasn't going to the right place (#117)

This commit is contained in:
Bryan
2022-01-31 19:08:10 -08:00
committed by GitHub
parent 515e55db33
commit bf90dede4f
@@ -27,7 +27,7 @@ const CreateWorkspacePage: React.FC = () => {
}
const onCancel = async () => {
await router.push(`/projects/${organization}/${project}`)
await router.push(`/projects/${organization}/${projectName}`)
}
const onSubmit = async (req: API.CreateWorkspaceRequest) => {