diff --git a/frontend/libs/console/legacy-ce/src/lib/components/Services/Events/Common/Components/utils.tsx b/frontend/libs/console/legacy-ce/src/lib/components/Services/Events/Common/Components/utils.tsx
index f6d3b543dc6..a56dea615ae 100644
--- a/frontend/libs/console/legacy-ce/src/lib/components/Services/Events/Common/Components/utils.tsx
+++ b/frontend/libs/console/legacy-ce/src/lib/components/Services/Events/Common/Components/utils.tsx
@@ -28,5 +28,5 @@ export const getEventDeliveryIcon = (delivered: boolean) => {
};
export const getInvocationLogStatus = (status: number) => {
- return status < 300 ? : ;
+ return status && status < 300 ? : ;
};