Commit 843f684e authored by Robert Knight's avatar Robert Knight

Replace concatenation with string interpolation

parent 68f3ef05
......@@ -28,7 +28,7 @@ export class ServiceURLService {
const links = await this._apiRoutes.links();
this._store.updateLinks(links);
} catch (error) {
console.warn('Failed to fetch Hypothesis links: ' + error.message);
console.warn(`Failed to fetch Hypothesis links: ${error.message}`);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment