Skip to content

Commit

Permalink
fix(ui): typo for copy toast messages (#1327)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapette authored and tchiotludo committed Apr 4, 2023
1 parent 4e81077 commit 14ddc93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/containers/Schema/SchemaCreate/SchemaCreate.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class SchemaCreate extends Form {
this.props.history.push({
pathname: `/ui/${clusterId}/schema`
});
toast.success(`Schema '${formData.subject}' is created`);
toast.success(`Schema '${formData.subject}' created`);
});
}

Expand Down
2 changes: 1 addition & 1 deletion client/src/containers/Topic/TopicCreate/TopicCreate.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class TopicCreate extends Form {
this.props.history.push({
pathname: `/ui/${clusterId}/topic`
});
toast.success(`Topic '${formData.name}' is created`);
toast.success(`Topic '${formData.name}' created`);
});
}
render() {
Expand Down

0 comments on commit 14ddc93

Please sign in to comment.