summaryrefslogtreecommitdiff
path: root/client/src/components/Card/CardAgreement.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/components/Card/CardAgreement.jsx')
-rw-r--r--client/src/components/Card/CardAgreement.jsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/src/components/Card/CardAgreement.jsx b/client/src/components/Card/CardAgreement.jsx
index 77bb1a0..fe4edb1 100644
--- a/client/src/components/Card/CardAgreement.jsx
+++ b/client/src/components/Card/CardAgreement.jsx
@@ -1,6 +1,5 @@
import React from 'react'
import styles from './CardAgreement.module.css'
-import SubmitButton from '../SubmitButton/SubmitButton'
import { Typography } from '@mui/material'
import { useTranslation } from 'react-i18next'
@@ -10,11 +9,10 @@ const CardAgreement = ({ title, image }) => {
<>
<div className={styles.card}>
<img className={styles.card__image} src={image} alt="" />
- <Typography align='center'>
+ <Typography align="center">
{t('I_HEREBY_CONFIRM_THE_IDENTITY_AND_ADDRESS')}
</Typography>
</div>
- <SubmitButton />
</>
)
}