diff --git a/openmetadata-ui/src/main/resources/ui/src/components/TableProfiler/TableProfilerV1.tsx b/openmetadata-ui/src/main/resources/ui/src/components/TableProfiler/TableProfilerV1.tsx index 1b2c9623445..17b46b7a4e7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/TableProfiler/TableProfilerV1.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/TableProfiler/TableProfilerV1.tsx @@ -137,7 +137,7 @@ const TableProfilerV1: FC = ({ const [selectedTestCaseStatus, setSelectedTestCaseStatus] = useState(''); const [selectedTestType, setSelectedTestType] = useState(''); - const [isLoading, setIsLoading] = useState(false); + const [isLoading, setIsLoading] = useState(true); const [dateRangeObject, setDateRangeObject] = useState(DEFAULT_RANGE_DATA); @@ -501,6 +501,8 @@ const TableProfilerV1: FC = ({ if (fetchProfiler) { fetchLatestProfilerData(); + } else { + setIsLoading(false); } if (isTourOpen) { setTable(mockDatasetData.tableDetails as unknown as Table);