diff --git a/packages/twenty-front/src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx b/packages/twenty-front/src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx index 28d551c15..8b01952a3 100644 --- a/packages/twenty-front/src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx +++ b/packages/twenty-front/src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx @@ -102,17 +102,16 @@ export const RecordDetailRelationSection = ({ } satisfies RecordGqlOperationFilter) : {}; - const { data: relationAggregateResult, loading: aggregateLoading } = - useAggregateRecords<{ - id: { COUNT: number }; - }>({ - objectNameSingular: relationObjectMetadataItem.nameSingular, - filter: filtersForAggregate, - skip: !isToManyObjects, - recordGqlFieldsAggregate: { - id: [AGGREGATE_OPERATIONS.count], - }, - }); + const { data: relationAggregateResult } = useAggregateRecords<{ + id: { COUNT: number }; + }>({ + objectNameSingular: relationObjectMetadataItem.nameSingular, + filter: filtersForAggregate, + skip: !isToManyObjects, + recordGqlFieldsAggregate: { + id: [AGGREGATE_OPERATIONS.count], + }, + }); const isRecordReadOnly = useIsRecordReadOnly({ recordId, @@ -123,7 +122,7 @@ export const RecordDetailRelationSection = ({ isRecordReadOnly, }); - if (loading || aggregateLoading || isFieldReadOnly) return null; + if (loading || isFieldReadOnly) return null; const relationRecordsCount = relationAggregateResult?.id?.COUNT ?? 0;