diff --git a/src/components/MarkFormField/index.tsx b/src/components/MarkFormField/index.tsx index 02f34cc..9a14989 100644 --- a/src/components/MarkFormField/index.tsx +++ b/src/components/MarkFormField/index.tsx @@ -1,9 +1,8 @@ import { CurrentUserMark } from '../../types/mark.ts' import styles from './style.module.scss' - -import { MARK_TYPE_TRANSLATION } from '../../utils/const.ts' import { findNextIncompleteCurrentUserMark, + getToolboxLabelByMarkType, isCurrentUserMarksComplete, isCurrentValueLast } from '../../utils' @@ -53,6 +52,7 @@ const MarkFormField = ({ : handleCurrentUserMarkChange(findNext()!) } const toggleActions = () => setDisplayActions(!displayActions) + const markLabel = getToolboxLabelByMarkType(selectedMark.mark.type) return (
@@ -78,16 +78,14 @@ const MarkFormField = ({
-

Add your signature

+

Add {markLabel}

handleFormSubmit(e)}> diff --git a/src/utils/const.ts b/src/utils/const.ts index 8e53a46..38f138e 100644 --- a/src/utils/const.ts +++ b/src/utils/const.ts @@ -1,9 +1,4 @@ -import { MarkType } from '../types/drawing.ts' - export const EMPTY: string = '' -export const MARK_TYPE_TRANSLATION: { [key: string]: string } = { - [MarkType.FULLNAME.valueOf()]: 'Full Name' -} export const ARRAY_BUFFER = 'arraybuffer' export const DEFLATE = 'DEFLATE'