Fixed error message when editing workspace with same name (#4615)

This commit is contained in:
Diganta Kr Banik 2022-10-26 20:35:10 +05:30 committed by GitHub
parent 0c895e2e4e
commit 5a1a3108ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ export const Organization = function Organization({ darkMode }) {
return;
}
if (organizationNameExists) {
toast.error(`${newOrgName} already exists.`, {
toast.error(`The workspace ${newOrgName} already exists.`, {
position: 'top-center',
});
return;