Skip to content

Commit 53b5083

Browse files
authoredJul 23, 2024··
Merge pull request #1007 from swaroopar/feature/fixIsvDashboardError
fix retry for ISV dashboard alert
2 parents 1eadd68 + 5243ea4 commit 53b5083

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/components/content/home/isv/IsvServicesDashBoard.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ export function IsvServicesDashBoard(): React.JSX.Element {
2828
if (listDeployedServicesByIsvQuery.isError) {
2929
void listDeployedServicesByIsvQuery.refetch();
3030
}
31+
if (listRegisteredServicesByIsvQuery.isError) {
32+
void listRegisteredServicesByIsvQuery.refetch();
33+
}
3134
};
3235

3336
if (listDeployedServicesByIsvQuery.data !== undefined && listDeployedServicesByIsvQuery.data.length > 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.