Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ BASE_URL='localhost:8734'
LMS_BASE_URL='http://localhost:18000'
LOGIN_URL='http://localhost:18000/login'
LOGOUT_URL='http://localhost:18000/logout'
ACCOUNT_PROFILE_URL='http://localhost:1995'
ACCOUNT_SETTINGS_URL='http://localhost:1997'
LOGO_URL='https://edx-cdn.org/v3/default/logo.svg'
LOGO_TRADEMARK_URL='https://edx-cdn.org/v3/default/logo-trademark.svg'
LOGO_WHITE_URL='https://edx-cdn.org/v3/default/logo-white.svg'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function CompletedCourseCard(props) {
<p className="mb-0 lead">
View your certificate on
{' '}
<a className="text-underline" href={`${process.env.LMS_BASE_URL}/u/${getAuthenticatedUser().username}`}>your profile →</a>
<a className="text-underline" href={`${process.env.ACCOUNT_PROFILE_URL}/u/${getAuthenticatedUser().username}`}>your profile →</a>
</p>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/masters-page/MastersPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ function MastersPage({
},
{
type: 'item',
href: `${process.env.LMS_BASE_URL}/u/${getAuthenticatedUser().username}`,
href: `${process.env.ACCOUNT_PROFILE_URL}/u/${getAuthenticatedUser().username}`,
content: 'My Profile',
},
{
type: 'item',
href: `${process.env.LMS_BASE_URL}/account/settings`,
href: process.env.ACCOUNT_SETTINGS_URL,
content: 'Account Settings',
},
{
Expand Down