diff --git a/frontend/src/components/atoms/ModuleCard/index.tsx b/frontend/src/components/atoms/ModuleCard/index.tsx
index dab2b89b2f75c2a3254ce587da4557b657b40400..cec15728d7cd46f9237a72d33583a2bd4082a8b4 100644
--- a/frontend/src/components/atoms/ModuleCard/index.tsx
+++ b/frontend/src/components/atoms/ModuleCard/index.tsx
@@ -37,11 +37,11 @@ const ModuleCard: React.FC<ModuleCardProps> = ({ module }: ModuleCardProps) => {
             {module.terms.map((term: Term) => {
               switch (term) {
                 case Term.AUTUMN:
-                  return <FontAwesomeIcon icon={faLeaf} />;
+                  return <FontAwesomeIcon icon={faLeaf} key={Term.AUTUMN}/>;
                 case Term.SPRING:
-                  return <FontAwesomeIcon icon={faSeedling} />;
+                  return <FontAwesomeIcon icon={faSeedling} key={Term.SPRING}/>;
                 case Term.SUMMER:
-                  return <FontAwesomeIcon icon={faSun} />;
+                  return <FontAwesomeIcon icon={faSun} key={Term.SUMMER}/>;
                 default:
                   return "";
               }
diff --git a/frontend/src/components/pages/StandardView/index.tsx b/frontend/src/components/pages/StandardView/index.tsx
index 45fd145d571e12f071da94e18157881643f9fbd9..cfa68f8a49b77e24789c28ccb936973eb4fbcd10 100644
--- a/frontend/src/components/pages/StandardView/index.tsx
+++ b/frontend/src/components/pages/StandardView/index.tsx
@@ -8,7 +8,7 @@ import RightBar from "components/organisms/RightBar";
 import classNames from "classnames";
 import ModuleList from "../ModuleList";
 import ModuleResources from "../ModuleResources";
-import ModuleFeedback from "../ModuleResources";
+import ModuleFeedback from "../ModuleFeedback";
 import LeftBarHome from "components/organisms/LeftBarHome";
 import LeftBarModuleList from "components/organisms/LeftBarModuleList";
 import LeftBarModule from "components/organisms/LeftBarModule";