Browse Source

[hotfix]: typo in consumer groups error message (#952)

Co-authored-by: Марат Чукмаров <mchukmarov@infotech.team>
Marat Chukmarov 3 years ago
parent
commit
d5289e1d13
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kafka-ui-react-app/src/redux/actions/thunks/consumerGroups.ts

+ 1 - 1
kafka-ui-react-app/src/redux/actions/thunks/consumerGroups.ts

@@ -29,7 +29,7 @@ export const fetchConsumerGroupsList =
       const response = await getResponse(e);
       const alert: FailurePayload = {
         subject: ['consumer-groups', clusterName].join('-'),
-        title: `Consumer Gropups`,
+        title: `Consumer Groups`,
         response,
       };
       dispatch(actions.fetchConsumerGroupsAction.failure({ alert }));