summaryrefslogtreecommitdiff
path: root/client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx')
-rw-r--r--client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx b/client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx
index 598b8b7..1d7fdc0 100644
--- a/client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx
+++ b/client/src/pages/Enrollment/DocumentScanner/DocumentScanner.jsx
@@ -21,6 +21,7 @@ const DocumentScanner = () => {
]
const [documents, setDocuments] = useState({ POI: '', POA: '', DOB: '' })
const [activeStep, setActiveStep] = React.useState(0)
+ const language = localStorage.getItem('i18nextLng')
const [doccu] = useState({ POI: '', POA: '', DOB: '' })
@@ -49,6 +50,13 @@ const DocumentScanner = () => {
(!documents.DOB && activeStep === 2)
) {
toast.error(t('SCAN_YOUR_DOCUMENT'))
+ let audio
+ if (language === 'en') {
+ audio = new Audio(`${process.env.PUBLIC_URL}/assets/audios/scan-documents-english.mp3`)
+ } else if (language === 'hi') {
+ audio = new Audio(`${process.env.PUBLIC_URL}/assets/audios/scan-documents-hindi.mp3`)
+ }
+ audio.play()
} else {
setActiveStep((prevActiveStep) => prevActiveStep + 1)
}