diff --git a/app/components/course-page/course-stage-step/first-stage-your-task-card/index.hbs b/app/components/course-page/course-stage-step/first-stage-your-task-card/index.hbs
index 041f73a468..19eb9f715a 100644
--- a/app/components/course-page/course-stage-step/first-stage-your-task-card/index.hbs
+++ b/app/components/course-page/course-stage-step/first-stage-your-task-card/index.hbs
@@ -16,9 +16,21 @@
{{markdown-to-html this.instructionsMarkdown}}
- {{#if this.videoEmbedHtml}}
+ {{#if @currentStep.courseStage.course.isShell}}
- {{html-safe this.videoEmbedHtml}}
+
+ {{! template-lint-disable no-inline-styles }}
+
+
+
+
{{/if}}
diff --git a/app/components/course-page/course-stage-step/first-stage-your-task-card/index.ts b/app/components/course-page/course-stage-step/first-stage-your-task-card/index.ts
index 0ee076df40..a7adbb5b91 100644
--- a/app/components/course-page/course-stage-step/first-stage-your-task-card/index.ts
+++ b/app/components/course-page/course-stage-step/first-stage-your-task-card/index.ts
@@ -82,21 +82,6 @@ export default class FirstStageYourTaskCard extends Component {
);
}
- get videoEmbedHtml() {
- if (this.args.currentStep.courseStage.course.isShell) {
- return `
- `;
- } else {
- return null;
- }
- }
-
@action
handleViewLogsButtonClick() {
this.coursePageState.testResultsBarIsExpanded = true;