Skip to content

Commit

Permalink
fix: apply review hints
Browse files Browse the repository at this point in the history
refs: SHELL-47
  • Loading branch information
CataldoMazzilli committed Apr 11, 2023
1 parent ec019c6 commit 486f29b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/boot/app/app-loader-mounter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import React, { FC, Suspense, useMemo } from 'react';
import { isEmpty, map } from 'lodash';
import { map } from 'lodash';
import { useAppStore } from '../../store/app';
import AppContextProvider from './app-context-provider';

Expand Down Expand Up @@ -36,7 +36,7 @@ const AppLoaderMounter: FC = () => {
hidden
style={{ height: 0, overflow: 'hidden' }}
>
{!isEmpty(entries) && entries}
{entries}
</div>
);
};
Expand Down

0 comments on commit 486f29b

Please sign in to comment.