diff --git a/src/pages/Form16/components/RequestSubmissionSuccess.tsx b/src/pages/Form16/components/RequestSubmissionSuccess.tsx index d349e3b..d9701b1 100644 --- a/src/pages/Form16/components/RequestSubmissionSuccess.tsx +++ b/src/pages/Form16/components/RequestSubmissionSuccess.tsx @@ -5,8 +5,6 @@ import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { StatusChip } from './StatusChip'; import { TimelineStep } from './TimelineStep'; -import { contactAdminForForm16Mismatch } from '@/services/form16Api'; -import { toast } from 'sonner'; export type SubmissionResultStatus = 'success' | 'mismatch' | 'duplicate' | 'error'; @@ -50,16 +48,6 @@ export function RequestSubmissionSuccess({ return 'Form 16A details do not match with 26AS data.'; })(); - const onContactAdmin = async () => { - try { - await contactAdminForForm16Mismatch(requestId); - toast.success('Administrator notified'); - } catch (e: any) { - const msg = e?.response?.data?.message || e?.message || 'Failed to notify administrator'; - toast.error(String(msg)); - } - }; - const isDuplicate = status === 'duplicate'; const isError = status === 'error'; @@ -195,6 +183,9 @@ export function RequestSubmissionSuccess({

If you have submitted the updated Form 16A but the latest 26AS is not uploaded for this quarter yet, please notify RE so they can upload/update 26AS.

+

+ contact at - service@royalenfield.com +

)} @@ -290,11 +281,6 @@ export function RequestSubmissionSuccess({ {isDuplicate ? 'Back to New Submission' : isMismatch ? 'Resubmit Form 16A' : 'Try Again'} )} - {isMissing26AsMismatch && ( - - )}