diff --git a/src/components/MarkFormField/index.tsx b/src/components/MarkFormField/index.tsx index 718a119..5f49d27 100644 --- a/src/components/MarkFormField/index.tsx +++ b/src/components/MarkFormField/index.tsx @@ -1,5 +1,4 @@ import { CurrentUserMark } from '../../types/mark.ts' -import styles from './style.module.scss' import { findNextIncompleteCurrentUserMark, getToolboxLabelByMarkType, @@ -10,6 +9,8 @@ import React, { useState } from 'react' import { MarkInput } from '../MarkTypeStrategy/MarkInput.tsx' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faCheck } from '@fortawesome/free-solid-svg-icons' +import { Button } from '@mui/material' +import styles from './style.module.scss' interface MarkFormFieldProps { currentUserMarks: CurrentUserMark[] @@ -123,22 +124,23 @@ const MarkFormField = ({ userMark={selectedMark} />
- +
)} {complete && (
- +
)} @@ -148,6 +150,7 @@ const MarkFormField = ({ return (