From 3e344b44c8577f6f24b498ef30d067809ade5f2d Mon Sep 17 00:00:00 2001 From: Anas Fikhi Date: Mon, 18 Dec 2023 20:44:05 +0100 Subject: [PATCH] [ Edit ] disabled the debug mode --- lib/src/etc/utils.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/etc/utils.dart b/lib/src/etc/utils.dart index fb26379..11bda29 100644 --- a/lib/src/etc/utils.dart +++ b/lib/src/etc/utils.dart @@ -4,11 +4,11 @@ import 'dart:math'; final utils = Utils(); class Utils { - final isDebugMode = true; + final isDebugMode = false; //! notice the "/" String get baseUrl => - isDebugMode ? 'http://192.168.0.5:5559' : 'http://api.langsync.app'; + isDebugMode ? 'http://192.168.0.5:5559' : 'https://api.langsync.app'; bool isValidApiKeyFormatted(String apiKey) { final isNotEmpty = apiKey.isNotEmpty;