Skip to content

Commit

Permalink
fix: progress circle is displayed in the background
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstefanequilobe committed Dec 19, 2022
1 parent 8b74a01 commit 22a76dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/layout/IndeterminateProgressOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const Container = styled('div')`
display: flex;
justify-content: center;
align-items: center;
z-index: 7000;
`;

const IndeterminateProgressOverlay = () => (
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/LeftNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const LeftNav = withTheme(({ children }) => {
return (
<Container>
<NavContainer>
{organizations?.length > 2 && (
{organizations?.length > 1 && (
<MenuItem
selected={!selectedOrgUid}
to={constants.ROUTES.retirementExplorer}
Expand Down

0 comments on commit 22a76dc

Please sign in to comment.