Skip to content

Commit 408a936

Browse files
authored
Merge pull request #1341 from topcoder-platform/pm-3037
fix(PM-3037, PM-3038): user handle url
2 parents 1da9949 + 788d264 commit 408a936

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/apps/review/src/lib/components/AiReviewsTable/AiReviewsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const AiReviewsTable: FC<AiReviewsTableProps> = props => {
9090
<div className={styles.label}>Score</div>
9191
<div className={styles.value}>
9292
{run.status === 'SUCCESS' ? (
93-
run.workflow.scorecard ? (
93+
(run.workflow.scorecard && run.workflow.id) ? (
9494
<Link
9595
to={`../reviews/${props.submission.id}?workflowId=${run.workflow.id}`}
9696
>

src/apps/review/src/lib/components/Scorecard/ScorecardViewer/ScorecardViewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ const ScorecardViewerContent: FC<ScorecardViewerProps> = props => {
217217
</i>
218218
{errorMessage}
219219
{' '}
220-
Check bellow.
220+
Check below.
221221
</div>
222222
)}
223223

src/config/environments/default.env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const REVIEW_OPPORTUNITIES_URL_DEFAULT = getReactEnv<string>(
169169
export const REVIEW = {
170170
CHALLENGE_PAGE_URL: 'https://www.topcoder-dev.com/challenges',
171171
OPPORTUNITIES_URL: REVIEW_OPPORTUNITIES_URL_DEFAULT,
172-
PROFILE_PAGE_URL: 'https://profiles.topcoder-dev.com/profiles',
172+
PROFILE_PAGE_URL: 'https://profiles.topcoder-dev.com',
173173
}
174174

175175
const FILESTACK_SECURITY_POLICY = getReactEnv<string | undefined>(

0 commit comments

Comments
 (0)