Fix lint error

Co-authored-by: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com>
This commit is contained in:
Karishma Chadha 2022-05-19 12:55:09 -04:00 committed by GitHub
parent 4679d06ac0
commit 36849c9f40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -367,7 +367,7 @@ class VirtualMachine extends EventEmitter {
const promise = storage.load(storage.AssetType.Project, id);
promise.then(projectAsset => {
if (!projectAsset) {
log.error("Failed to fetch project with id: ", id);
log.error(`Failed to fetch project with id: ${id}`);
return null;
}
return vm.loadProject(projectAsset.data);