update gstin success text to inform verification completes in 24 hours

This commit is contained in:
vickytechkey 2026-08-09 13:32:57 +05:30
parent 04632f1ca3
commit e79c7369bc
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ describe('Supplier Portal Onboarding & Feature E2E Flow', () => {
cy.contains('Step 2 of 3: Tax & Identity Verification').should('be.visible');
cy.get('input#verify-gst').clear().type('29AAAAA1111A1Z1');
cy.contains('Submit GSTIN').click();
cy.contains('GSTIN successfully verified with government registry.').should('be.visible');
cy.contains('verification will be completed within next 24 hrs').should('be.visible');
// Upload mock Aadhaar & PAN files
cy.get('input#aadhar-upload').selectFile({

View file

@ -1148,7 +1148,7 @@ export default function App() {
</div>
{isGstinVerified && (
<p style={{ color: 'var(--success)', fontSize: '0.85rem', marginTop: '0.5rem', fontWeight: 600 }}>
GSTIN successfully verified with government registry.
verification will be completed within next 24 hrs
</p>
)}
</div>