Explorar el Código

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

David Bejanyan hace 2 años
padre
commit
ca225440d8
Se han modificado 1 ficheros con 0 adiciones y 3 borrados
  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));
     },
   });