diff --git a/client/src/components/home/recording-block.tsx b/client/src/components/home/recording-block.tsx
index 8a16ef9b..40dec5cb 100644
--- a/client/src/components/home/recording-block.tsx
+++ b/client/src/components/home/recording-block.tsx
@@ -8,7 +8,7 @@ import React from "react";
import { Paper, Typography } from "@material-ui/core";
import { Answer, Question, Status } from "types";
import AnswerList from "components/home/answer-list";
-import ProgressBar from "components/progress-bar";
+import ProgressChecks from "components/progress-checks";
export interface RecordingBlock {
name: string;
@@ -42,7 +42,7 @@ export default function RecordingBlockItem(props: {
data-cy="block-progress"
style={{ flexGrow: 1, marginLeft: 25, marginRight: 25 }}
>
-
+
diff --git a/client/src/components/my-mentor-card/recommended-action-button.tsx b/client/src/components/my-mentor-card/recommended-action-button.tsx
index b37e9d5c..ff5516c0 100644
--- a/client/src/components/my-mentor-card/recommended-action-button.tsx
+++ b/client/src/components/my-mentor-card/recommended-action-button.tsx
@@ -5,10 +5,10 @@ Permission to use, copy, modify, and distribute this software and its documentat
The full terms of this copyright and license should always be found in the root directory of this software deliverable as "license.txt" and if these terms are not found with this software, please contact the USC Stevens Center for the full license.
*/
import { Button, Typography } from "@material-ui/core";
+import { DoubleArrow, PlayCircleFilled } from "@material-ui/icons";
import React from "react";
import { Mentor } from "types";
import { UseWithRecommendedAction } from "./use-with-recommended-action";
-
export default function RecommendedActionButton(props: {
setThumbnail: (file: File) => void;
mentor: Mentor;
@@ -35,15 +35,19 @@ export default function RecommendedActionButton(props: {
/>
@@ -51,16 +55,20 @@ export default function RecommendedActionButton(props: {
) : (
-