Minor fix to variable declaration
Some checks failed
Build Flutter Web and Docker Image for Local Registry / Build Flutter Web App (push) Failing after 3m6s

This commit is contained in:
whysman 2024-11-13 00:00:13 -05:00
parent ad2c94c29a
commit 051c05f43f

View File

@ -24,9 +24,9 @@ class StatusPageState extends State<StatusPage> with WidgetsBindingObserver {
late StreamController<dynamic> controller;
List<Map<String, dynamic>> messages = [];
final Map<String, ImageProvider> _imageCache = {};
final wsBaseUrl = String.fromEnvironment('WS_BASE_URL',
static const wsBaseUrl = String.fromEnvironment('WS_BASE_URL',
defaultValue: 'ws://localhost:8080');
final restBaseUrl = String.fromEnvironment('REST_BASE_URL',
static const restBaseUrl = String.fromEnvironment('REST_BASE_URL',
defaultValue: 'http://localhost:8080');
@override