Browse Source

[FE] Get rid of "Topic analysis successfully started" message (#3628)

David Bejanyan 2 years ago
parent
commit
ca225440d8
1 changed files with 0 additions and 3 deletions
  1. 0 3
      kafka-ui-react-app/src/lib/hooks/api/topics.ts

+ 0 - 3
kafka-ui-react-app/src/lib/hooks/api/topics.ts

@@ -314,9 +314,6 @@ export function useAnalyzeTopic(props: GetTopicDetailsRequest) {
   const client = useQueryClient();
   return useMutation(() => api.analyzeTopic(props), {
     onSuccess: () => {
-      showSuccessAlert({
-        message: `Topic analysis successfully started`,
-      });
       client.invalidateQueries(topicKeys.statistics(props));
     },
   });