since eslint can auto fix semicolon, standardize all end with semicolon

This commit is contained in:
LouisLam 2021-09-16 22:57:34 +08:00
parent 579e07ded4
commit 9b8f01cfc6
3 changed files with 8 additions and 8 deletions

View file

@ -33,12 +33,12 @@ module.exports.statusPageSocketHandler = (socket) => {
callback({
ok: true,
incident: incidentBean.toPublicJSON(),
})
});
} catch (error) {
callback({
ok: false,
msg: error.message,
})
});
}
});
@ -50,12 +50,12 @@ module.exports.statusPageSocketHandler = (socket) => {
callback({
ok: true,
})
});
} catch (error) {
callback({
ok: false,
msg: error.message,
})
});
}
});
}
};