Skip to content

Commit

Permalink
[ Edit ] disabled the debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
anasfik committed Dec 18, 2023
1 parent 95e3351 commit 3e344b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/etc/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3e344b4

Please sign in to comment.