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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) => {