diff --git a/src/components/BlocksWidget.tsx b/src/components/BlocksWidget.tsx
index 86c21f2b5..9d365a7b3 100644
--- a/src/components/BlocksWidget.tsx
+++ b/src/components/BlocksWidget.tsx
@@ -23,18 +23,25 @@ const BlocksWidget = ({
}
isEditing={isEditing}
onPress={onPress}
right={
-
- {`${value?.transacionCount} / ${value?.size}`}
-
-
- {value?.time}
-
+ {value && (
+ <>
+
+ {`${value?.transacionCount} / ${value?.size}`}
+
+
+ {value?.time}
+
+ >
+ )}
}
/>