diff --git a/apps/backend/src/trpc/user-apis/order.ts b/apps/backend/src/trpc/user-apis/order.ts index 27ebf97..5e1bf2e 100644 --- a/apps/backend/src/trpc/user-apis/order.ts +++ b/apps/backend/src/trpc/user-apis/order.ts @@ -384,7 +384,7 @@ export const orderRouter = router({ }); if (userDetail?.isSuspended) { - throw new ApiError("You are suspended from placing orders", 403); + throw new ApiError("Unable to place order", 403); } const { diff --git a/packages/ui/index.ts b/packages/ui/index.ts index be64919..97b5828 100755 --- a/packages/ui/index.ts +++ b/packages/ui/index.ts @@ -64,9 +64,9 @@ const isDevMode = Constants.executionEnvironment !== "standalone"; // const BASE_API_URL = 'http://10.0.2.2:4000'; // const BASE_API_URL = 'http://192.168.100.101:4000'; // const BASE_API_URL = 'http://192.168.1.3:4000'; -// let BASE_API_URL = "https://mf.freshyo.in"; +let BASE_API_URL = "https://mf.freshyo.in"; // let BASE_API_URL = 'http://192.168.100.104:4000'; - let BASE_API_URL = 'http://192.168.29.176:4000'; + // let BASE_API_URL = 'http://192.168.29.176:4000'; // if(isDevMode) { // }