Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into issues/3883
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean committed Jun 27, 2023
2 parents f211444 + b9bbb1a commit 9c52f02
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kafka-ui-react-app/src/lib/hooks/api/topics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,11 @@ export function useTopicAnalysis(
useErrorBoundary: true,
retry: false,
suspense: false,
onError: (error: Response) => {
if (error.status !== 404) {
showServerError(error as Response);
}
},
}
);
}
Expand Down

0 comments on commit 9c52f02

Please sign in to comment.