Skip to content

Commit

Permalink
Adding wrapping for code
Browse files Browse the repository at this point in the history
  • Loading branch information
arivepr committed Nov 23, 2021
1 parent 327f6e3 commit 80a28e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InventoryDetail/ApplicationDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const ApplicationDetails = ({ onTabSelect, appList, ...props }) => {
const history = useHistory();
const dispatch = useDispatch();
const searchParams = new URLSearchParams(search);
// eslint-disable-next-line max-len
const items = useSelector(({ entityDetails }) => entityDetails?.activeApps || []).filter(({ isVisible }) => isVisible !== false);
const items = useSelector(({ entityDetails }) => entityDetails?.activeApps || [])
.filter(({ isVisible }) => isVisible !== false);
const activeApp = useSelector(({ entityDetails }) => entityDetails?.activeApp);
const disabledApps = useSelector(({ systemProfileStore }) => systemProfileStore?.disabledApps);
const defaultApp = activeApp?.appName || appList?.find(({ pageId, name }) => items?.[0]?.name === (
Expand Down

0 comments on commit 80a28e0

Please sign in to comment.