From f6ea515196666af98440061755ae0e18d33b8891 Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Sun, 9 Aug 2026 17:02:13 +0530 Subject: [PATCH] fixing https ssl error --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index ace9171..761e00b 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,6 +1,6 @@ const getApiBaseUrl = () => { 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'; };