Fix lint warnings by switching + to concat()

This commit is contained in:
Tim Donohue
2023-03-03 10:08:50 -06:00
parent d38ba9cf0e
commit 48e95e262d
10 changed files with 16 additions and 16 deletions

View File

@@ -56,7 +56,7 @@ function login(email: string, password: string): void {
if (!config.rest.baseUrl) {
console.warn("Could not load 'rest.baseUrl' from config.json. Falling back to " + FALLBACK_TEST_REST_BASE_URL);
} else {
console.log("Found 'rest.baseUrl' in config.json. Using this REST API for login: " + config.rest.baseUrl);
console.log("Found 'rest.baseUrl' in config.json. Using this REST API for login: ".concat(config.rest.baseUrl));
baseRestUrl = config.rest.baseUrl;
}