Compare commits

...

1 Commits

Author SHA1 Message Date
Chukwumdiebube e6ba42afcd env variables created 2023-02-04 06:28:15 +01:00
3 changed files with 8 additions and 6 deletions
+4 -1
View File
@@ -11,4 +11,7 @@ REACT_APP_AUX_ENDPOINT = "https://devapi.mermsemr.com/en/desktop/api/v2/myfit"
REACT_APP_USERS_ENDPOINT = "https://devapi.mermsemr.com/en/desktop/api/v2/myfituser"
# REACT_APP_PASSWORD_ENDPOINT = "https://devapi.mermsemr.com/en/desktop/api/v2/myfituser/resetpass"
REACT_APP_SESSION_EXPIRE_MINUTES = 5
REACT_APP_SESSION_EXPIRE_MINUTES = 5
REACT_APP_TRACKING = "Tracking"
REACT_APP_RESOURCES = "Resources"
+2 -3
View File
@@ -111,8 +111,7 @@ export default function MobileSidebar({ sidebar, action, logoutModalHandler }) {
<Icons name="market" />
</span>
<span className="item-content group-hover:text-purple text-[18px] transition-all duration-300 ease-in-out text-lighter-gray relative font-medium active flex-1">
Tracking
{process.env.REACT_APP_TRACKING}
</span>
</NavLink>
</li>
@@ -138,7 +137,7 @@ export default function MobileSidebar({ sidebar, action, logoutModalHandler }) {
<Icons name="star" />
</span>
<span className="item-content group-hover:text-purple text-[18px] transition-all duration-300 ease-in-out text-lighter-gray relative font-medium active flex-1">
Resources
{process.env.REACT_APP_RESOURCES}
</span>
</NavLink>
</li>
+2 -2
View File
@@ -168,7 +168,7 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
sidebar ? "active flex-1" : "w-0"
}`}
>
Tracking
{process.env.REACT_APP_TRACKING}
</span>
</NavLink>
</li>
@@ -208,7 +208,7 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
sidebar ? "active flex-1" : "w-0"
}`}
>
Resources
{process.env.REACT_APP_RESOURCES}
</span>
</NavLink>
</li>