correct production api base url to http://16.113.57.127:8080
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 49s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 6s

This commit is contained in:
vickytechkey 2026-08-09 21:42:31 +05:30
parent edc3711caf
commit b73610521c
2 changed files with 4 additions and 1 deletions

View file

@ -0,0 +1,3 @@
Title,SKU,Category,Price,Stock,Description
Silk Banarasi Saree,SAR-BAN-101,Apparel,120.00,15,Pure handloom zardozi border
Wooden Carved Ganesha,GAN-302,Home Decor,85.00,5,Premium teak wood hand carved
1 Title SKU Category Price Stock Description
2 Silk Banarasi Saree SAR-BAN-101 Apparel 120.00 15 Pure handloom zardozi border
3 Wooden Carved Ganesha GAN-302 Home Decor 85.00 5 Premium teak wood hand carved

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 'https://betasuppliers.tipro.in:8080'; return 'http://16.113.57.127:8080';
} }
return 'http://localhost:8000'; return 'http://localhost:8000';
}; };