Skip to content

Commit

Permalink
fix: update enterprise list css
Browse files Browse the repository at this point in the history
  • Loading branch information
brobro10000 committed Jun 27, 2024
1 parent 6afcb5b commit f65ba87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/EnterpriseList/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const EnterpriseList = ({ clearPortalConfiguration }) => {
return <Link key={uuid} to={`/${slug}/admin/learners`}>{name}</Link>;
};
const { minHeight } = useContext(GlobalContext);

console.log(minHeight);

Check warning on line 58 in src/components/EnterpriseList/index.jsx

View workflow job for this annotation

GitHub Actions / tests

Unexpected console statement
return (
<main role="main">
<div className="container-fluid" style={{ minHeight: `calc(100vh - ${minHeight}px)` }}>
<div className="container-fluid" style={{ minHeight }}>
<div className="row mt-4">
<div className="col-sm-12 col-md">
<h1>{TITLE}</h1>
Expand Down

0 comments on commit f65ba87

Please sign in to comment.