Skip to content

Commit

Permalink
Merge pull request #244 from Aar-if/main
Browse files Browse the repository at this point in the history
Issue #PS-2103: Add Workspace UI implementation in admin portal
  • Loading branch information
itsvick authored Oct 9, 2024
2 parents e65f1d3 + 771fc28 commit edc8bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layouts/sidebar/MenuItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import centerIcon from '../../../../public/images/centers.svg';
import dashboardIcon from '../../../../public/images/dashboard.svg';
import userIcon from '../../../../public/images/group.svg';
import coursePannerIcon from '../../../../public/images/event_available.svg';
const isBaseUrlDefined = !!process.env.REMOTE_EDITOR_URL;
const ENV = process.env.NEXT_PUBLIC_SHOW_WORKSPACE;


//
Expand Down Expand Up @@ -66,7 +66,7 @@ const Menuitems = [
icon: coursePannerIcon,
href: "/course-planner",
},
...(isBaseUrlDefined
...(ENV === 'true'
? [
{
title: "SIDEBAR.WORKSPACE",
Expand Down

0 comments on commit edc8bb4

Please sign in to comment.