1 parent 146efd4 commit c0fcfefCopy full SHA for c0fcfef
1 file changed
lib/nocodb_sdk/utils.dart
@@ -1,6 +1,6 @@
1
final _cloudHosts = [
2
'app.nocodb.com',
3
...(const String.fromEnvironment('NC_CLOUD_HOSTS').split(',')),
4
-];
+].where((h) => h.isNotEmpty);
5
6
bool isCloud(String host) => _cloudHosts.any((h) => host.contains(h));
0 commit comments