diff --git a/clients/admin-ui/src/features/data-catalog/systems/CatalogSystemsTable.tsx b/clients/admin-ui/src/features/data-catalog/systems/CatalogSystemsTable.tsx index eb5e259cc0..bfca1bd59c 100644 --- a/clients/admin-ui/src/features/data-catalog/systems/CatalogSystemsTable.tsx +++ b/clients/admin-ui/src/features/data-catalog/systems/CatalogSystemsTable.tsx @@ -60,11 +60,7 @@ const SystemsTable = () => { setTotalPages, } = useServerSidePagination(); - const { - data: queryResult, - isLoading, - isFetching, - } = useGetCatalogSystemsQuery({ + const { data: queryResult, isLoading } = useGetCatalogSystemsQuery({ page: pageIndex, size: pageSize, show_hidden: false, @@ -160,7 +156,7 @@ const SystemsTable = () => { }, }); - if (isLoading || isFetching) { + if (isLoading) { return ; } diff --git a/clients/admin-ui/src/features/data-discovery-and-detection/tables/cells/TaxonomyAddButton.tsx b/clients/admin-ui/src/features/data-discovery-and-detection/tables/cells/TaxonomyAddButton.tsx index 83a97ecae7..d32ba3d5a0 100644 --- a/clients/admin-ui/src/features/data-discovery-and-detection/tables/cells/TaxonomyAddButton.tsx +++ b/clients/admin-ui/src/features/data-discovery-and-detection/tables/cells/TaxonomyAddButton.tsx @@ -8,7 +8,7 @@ const TaxonomyAddButton = (props: ButtonProps) => (