summaryrefslogtreecommitdiff
path: root/client/src/components/Card
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-08-21 11:55:25 +0530
committerrohan09-raj <[email protected]>2022-08-21 11:55:25 +0530
commita49c7aefc99a1e0584cb0b3fb08d028b65dc35d9 (patch)
treef683612122aa478c531ed4082ed14dcd070813b1 /client/src/components/Card
parent4480f2d62865a585f8bbf0cd7122a25d0413bf2b (diff)
Update fixes
Diffstat (limited to 'client/src/components/Card')
-rw-r--r--client/src/components/Card/CardAgreement.jsx4
-rw-r--r--client/src/components/Card/CardBiometrics.jsx2
-rw-r--r--client/src/components/Card/CardScanner.jsx2
3 files changed, 1 insertions, 7 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 />
</>
)
}
diff --git a/client/src/components/Card/CardBiometrics.jsx b/client/src/components/Card/CardBiometrics.jsx
index 49a913e..bff00a5 100644
--- a/client/src/components/Card/CardBiometrics.jsx
+++ b/client/src/components/Card/CardBiometrics.jsx
@@ -1,6 +1,5 @@
import React from 'react'
import styles from './CardBiometrics.module.css'
-import SubmitButton from '../SubmitButton/SubmitButton'
const CardBiometrics = ({ title, image }) => {
return (
@@ -8,7 +7,6 @@ const CardBiometrics = ({ title, image }) => {
<div className={styles.card}>
<img className={styles.card__image} src={image} alt="" />
</div>
- <SubmitButton />
</>
)
}
diff --git a/client/src/components/Card/CardScanner.jsx b/client/src/components/Card/CardScanner.jsx
index 29caf39..f946c5b 100644
--- a/client/src/components/Card/CardScanner.jsx
+++ b/client/src/components/Card/CardScanner.jsx
@@ -1,6 +1,5 @@
import React from 'react'
import styles from './CardScanner.module.css'
-import SubmitButton from '../SubmitButton/SubmitButton'
const CardScanner = ({ title, image }) => {
return (
@@ -8,7 +7,6 @@ const CardScanner = ({ title, image }) => {
<div className={styles.card}>
<img className={styles.card__image} src={image} alt="" />
</div>
- <SubmitButton />
</>
)
}