Bug 1446975 fix eslint failure
MozReview-Commit-ID: D0DQxPo4Y4s
--- a/services/sync/modules/engines/clients.js
+++ b/services/sync/modules/engines/clients.js
@@ -233,17 +233,17 @@ ClientEngine.prototype = {
},
getClientType(id) {
const client = this._store._remoteClients[id];
if (client.type == DEVICE_TYPE_DESKTOP) {
return "desktop";
}
if (client.formfactor && client.formfactor.includes("tablet")) {
- return "tablet"
+ return "tablet";
}
return "phone";
},
async _readCommands() {
let commands = await Utils.jsonLoad("commands", this);
return commands || {};
},