diff --git a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.html b/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.html
deleted file mode 100644
index f09f9ae423c..00000000000
--- a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
Choose a location for the imported steps.
-
-
-
-
-
- {{ getNodePositionById(nodeId) }}: {{ getNodeTitle(nodeId) }}
-
-
-
-
-
-
-
diff --git a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.scss b/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.scss
deleted file mode 100644
index 59f55013195..00000000000
--- a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-.project-item {
- margin-bottom: 4px;
-}
-
-.project-item:hover {
- background-color: #add8e6;
-}
-
-.step-header {
- margin-inline-start: 24px;
-}
-
-.branch-path-step-header {
- margin-inline-start: 48px;
-}
-
-.mat-icon {
- margin: 0;
-}
diff --git a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.ts b/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.ts
deleted file mode 100644
index ab309529243..00000000000
--- a/src/app/authoring-tool/import-step/choose-import-step-location/choose-import-step-location.component.ts
+++ /dev/null
@@ -1,70 +0,0 @@
-import { Component } from '@angular/core';
-import { ConfigService } from '../../../../assets/wise5/services/configService';
-import { CopyNodesService } from '../../../../assets/wise5/services/copyNodesService';
-import { InsertNodesService } from '../../../../assets/wise5/services/insertNodesService';
-import { TeacherProjectService } from '../../../../assets/wise5/services/teacherProjectService';
-import { ActivatedRoute, Router } from '@angular/router';
-
-@Component({
- selector: 'choose-import-step-location',
- styleUrls: ['choose-import-step-location.component.scss', '../../add-content.scss'],
- templateUrl: 'choose-import-step-location.component.html'
-})
-export class ChooseImportStepLocationComponent {
- protected nodeIds: string[];
-
- constructor(
- private configService: ConfigService,
- private copyNodesService: CopyNodesService,
- private insertNodesService: InsertNodesService,
- private projectService: TeacherProjectService,
- private route: ActivatedRoute,
- private router: Router
- ) {
- this.nodeIds = Object.keys(this.projectService.idToOrder);
- this.nodeIds.shift(); // remove the 'group0' master root node from consideration
- }
-
- protected importSelectedNodes(nodeIdToInsertInsideOrAfter: string): void {
- this.copyNodesService
- .copyNodes(
- history.state.selectedNodes,
- history.state.importFromProjectId,
- this.configService.getProjectId()
- )
- .subscribe((copiedNodes: any[]) => {
- const nodesWithNewNodeIds = this.projectService.getNodesWithNewIds(copiedNodes);
- this.insertNodesService.insertNodes(nodesWithNewNodeIds, nodeIdToInsertInsideOrAfter);
- this.projectService.checkPotentialStartNodeIdChangeThenSaveProject().then(() => {
- this.projectService.refreshProject();
- if (nodesWithNewNodeIds.length === 1) {
- const newNode = nodesWithNewNodeIds[0];
- this.router.navigate(['../../../node', newNode.id], {
- relativeTo: this.route,
- state: {
- newComponents: newNode.components
- }
- });
- } else {
- this.router.navigate(['../../..'], { relativeTo: this.route });
- }
- });
- });
- }
-
- protected isGroupNode(nodeId: string): boolean {
- return this.projectService.isGroupNode(nodeId);
- }
-
- protected getNodeTitle(nodeId: string): string {
- return this.projectService.getNodeTitle(nodeId);
- }
-
- protected getNodePositionById(nodeId: string): string {
- return this.projectService.getNodePositionById(nodeId);
- }
-
- protected isNodeInAnyBranchPath(nodeId: string): boolean {
- return this.projectService.isNodeInAnyBranchPath(nodeId);
- }
-}
diff --git a/src/app/authoring-tool/import-step/choose-import-step/choose-import-step.component.html b/src/app/authoring-tool/import-step/choose-import-step/choose-import-step.component.html
index 67fd0d3b55a..5abfddd9191 100644
--- a/src/app/authoring-tool/import-step/choose-import-step/choose-import-step.component.html
+++ b/src/app/authoring-tool/import-step/choose-import-step/choose-import-step.component.html
@@ -1,6 +1,6 @@
Choose the step(s) that you want to import, then select Next.
- Selected unit: {{ project.metadata.title }}
+ Selected unit: {{ project?.metadata.title }}