Skip to content

Commit

Permalink
last PR feedback fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jpople committed Jan 15, 2025
1 parent deef1ad commit 3da41b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -160,7 +156,7 @@ const SystemsTable = () => {
},
});

if (isLoading || isFetching) {
if (isLoading) {
return <TableSkeletonLoader rowHeight={36} numRows={36} />;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const TaxonomyAddButton = (props: ButtonProps) => (
<Button
size="small"
icon={<Icons.Add />}
className=" max-h-[20px] max-w-[20px]"
className=" max-h-5 max-w-5"
data-testid="taxonomy-add-btn"
{...props}
/>
Expand Down

0 comments on commit 3da41b6

Please sign in to comment.