diff --git a/wax-prosemirror-services/src/FillTheGapQuestionService/components/EditorComponent.js b/wax-prosemirror-services/src/FillTheGapQuestionService/components/EditorComponent.js
index 4cf2038ef79b8500508714d5939ff050e54bb41d..4f58272465df29153b666197f43d20753c13333b 100644
--- a/wax-prosemirror-services/src/FillTheGapQuestionService/components/EditorComponent.js
+++ b/wax-prosemirror-services/src/FillTheGapQuestionService/components/EditorComponent.js
@@ -192,7 +192,10 @@ const EditorComponent = ({ node, view, getPos }) => {
     (showFeedBack && !testMode && (
       <>
         <StudentAnswer isCorrect={isCorrect}>{node.attrs.answer}</StudentAnswer>
-        <CorrectAnswers>{`(Aceepted Answers : ${node.textContent.replaceAll(';', ' -')})`}</CorrectAnswers>
+        <CorrectAnswers>{`(Accepted Answers : ${node.textContent.replaceAll(
+          ';',
+          ' -',
+        )})`}</CorrectAnswers>
       </>
     )) || <InputComponent getPos={getPos} node={node} view={view} />
   );
diff --git a/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js b/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
index 77c41edfef98c5d321efcd62b3ae86b41b59c3e5..c1ea11dc9c92398efe2bceeaca710bc718ea4c74 100644
--- a/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
+++ b/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
@@ -14,6 +14,11 @@ const MatchingWrapper = styled.div`
   margin-top: 10px;
 `;
 
+const MatchingContainerTool = styled.div`
+  border: 3px solid #f5f5f7;
+  border-bottom: none;
+`;
+
 const MatchingContainer = styled.div`
   border: 3px solid #f5f5f7;
   margin-bottom: 30px;
@@ -113,6 +118,22 @@ const AddOption = styled.div`
   }
 `;
 
+const RemoveQuestionButton = styled.button`
+  background: transparent;
+  cursor: pointer;
+  margin-top: 6px;
+  border: none;
+  position: relative;
+  bottom: 2px;
+  left: -11px;
+  float: right;
+`;
+
+const StyledIconActionRemove = styled(Icon)`
+  height: 24px;
+  width: 24px;
+`;
+
 export default ({ node, view, getPos }) => {
   const context = useContext(WaxContext);
   const {
@@ -243,9 +264,22 @@ export default ({ node, view, getPos }) => {
   const { testMode } = customProps;
   const { feedback } = node.attrs;
 
+  const removeQuestion = () => {};
+
   return (
     <MatchingWrapper>
       {/* <span>Matching</span> */}
+      {!testMode && !readOnly && (
+        <MatchingContainerTool>
+          <RemoveQuestionButton
+            aria-label="delete this question"
+            onClick={removeQuestion}
+            type="button"
+          >
+            <StyledIconActionRemove name="deleteOutlinedQuestion" />
+          </RemoveQuestionButton>
+        </MatchingContainerTool>
+      )}
       <MatchingContainer className="matching">
         <QuestionWrapper>
           <ContainerEditor getPos={getPos} node={node} view={view} />