Merge pull request #154 from snowball-tools/nv-handle-repo-exist-error

Show error in toast for creating repository that already exisits in account
This commit is contained in:
Vivian Phung 2024-05-22 10:19:09 -04:00 committed by GitHub
commit 9a74205bd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -99,8 +99,8 @@ const CreateRepo = () => {
console.error((err as Error).message);
toast({
id: 'failed-to-create-project',
title: 'Failed to create project',
id: 'error-deploying-project',
title: 'Error deploying project',
variant: 'error',
onDismiss: dismiss,
});