Skip to content

Commit 451d9c1

Browse files
committed
fix: Nits on the code
1 parent b027438 commit 451d9c1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/library-authoring/import-course/ImportDetailsPage.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export const ImportDetailsPage = () => {
7777
}
7878
}
7979

80+
migrationStatus = 'In Progress';
81+
8082
const collectionLink = () => {
8183
let libUrl = `/library/${libraryId}`;
8284
if (courseImportDetails?.targetCollection?.key) {
@@ -275,7 +277,12 @@ export const ImportDetailsPage = () => {
275277
<Stack gap={3}>
276278
<h4><FormattedMessage {...messages.importInProgressTitle} /></h4>
277279
<p>
278-
<FormattedMessage {...messages.importInProgressBody} />
280+
<FormattedMessage
281+
{...messages.importInProgressBody}
282+
values={{
283+
courseName: courseDetails?.title,
284+
}}
285+
/>
279286
</p>
280287
<h4><FormattedMessage {...messages.importSummaryTitle} /></h4>
281288
<SummaryCard isPending />

0 commit comments

Comments
 (0)