Skip to content

Commit

Permalink
Fixed error message when editing workspace with same name (ToolJet#4615)
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-diganta authored Oct 26, 2022
1 parent 0c895e2 commit 5a1a310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/_components/Organization.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5a1a310

Please sign in to comment.