summaryrefslogtreecommitdiff
path: root/client/src/components/Card/CardBiometrics.jsx
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/CardBiometrics.jsx
parent4480f2d62865a585f8bbf0cd7122a25d0413bf2b (diff)
Update fixes
Diffstat (limited to 'client/src/components/Card/CardBiometrics.jsx')
-rw-r--r--client/src/components/Card/CardBiometrics.jsx2
1 files changed, 0 insertions, 2 deletions
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 />
</>
)
}