Skip to content

Commit

Permalink
fix: Resolve Course Optimizer Scanning Bug
Browse files Browse the repository at this point in the history
- Corrected LINK_CHECK_STATUSES.IN_PROGRESS value that is sent by backend.
  • Loading branch information
Muhammad Faraz Maqsood authored and Faraz32123 committed Feb 24, 2025
1 parent ba896a3 commit a0a0b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/optimizer-page/data/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const LAST_EXPORT_COOKIE_NAME = 'lastexport';
export const LINK_CHECK_STATUSES = {
UNINITIATED: 'Uninitiated',
PENDING: 'Pending',
IN_PROGRESS: 'In-Progress',
IN_PROGRESS: 'In Progress',
SUCCEEDED: 'Succeeded',
FAILED: 'Failed',
CANCELED: 'Canceled',
Expand All @@ -11,7 +11,7 @@ export const LINK_CHECK_STATUSES = {
export enum LinkCheckStatusTypes {
UNINITIATED = 'Uninitiated',
PENDING = 'Pending',
IN_PROGRESS = 'In-Progress',
IN_PROGRESS = 'In Progress',
SUCCEEDED = 'Succeeded',
FAILED = 'Failed',
CANCELED = 'Canceled',
Expand Down

0 comments on commit a0a0b9d

Please sign in to comment.