fixing https ssl error
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 46s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 6s

This commit is contained in:
vickytechkey 2026-08-09 17:02:13 +05:30
parent e689550d3d
commit f6ea515196

View file

@ -1,6 +1,6 @@
const getApiBaseUrl = () => { const getApiBaseUrl = () => {
if (typeof window !== 'undefined' && window.location.hostname === 'betasuppliers.tipro.in') { if (typeof window !== 'undefined' && window.location.hostname === 'betasuppliers.tipro.in') {
return 'http://16.113.57.127:8000'; return 'https://betasuppliers.tipro.in:8080';
} }
return 'http://localhost:8000'; return 'http://localhost:8000';
}; };