Skip to content

Commit

Permalink
fix: deadspace under library table (#3029)
Browse files Browse the repository at this point in the history
* fix: remove redundant div

* fix: remove dead css
  • Loading branch information
mcmcgrath13 authored Dec 10, 2024
1 parent cc79551 commit 1fa26df
Show file tree
Hide file tree
Showing 3 changed files with 1,329 additions and 1,339 deletions.
12 changes: 5 additions & 7 deletions containers/ecr-viewer/src/app/components/EcrTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,11 @@ const EcrTable = async ({
);

return (
<div className="ecr-client-wrapper width-full overflow-auto">
<EcrTableClient
data={data}
sortColumn={sortColumn}
sortDirection={sortDirection}
/>
</div>
<EcrTableClient
data={data}
sortColumn={sortColumn}
sortDirection={sortDirection}
/>
);
};

Expand Down
Loading

0 comments on commit 1fa26df

Please sign in to comment.