chore(share): fix @typescript-eslint/no-unused-vars for unused note variable

there's no need to assign a variable, if we never use the value outside of the if check
This commit is contained in:
Panagiotis Papadopoulos 2025-03-10 07:34:43 +01:00
parent c2b75a6421
commit cd9d90323c

View File

@ -344,7 +344,6 @@ function register(router: Router) {
shacaLoader.ensureLoad();
const ancestorNoteId = req.query.ancestorNoteId ?? "_share";
let note;
if (typeof ancestorNoteId !== "string") {
res.status(400).json({ message: "'ancestorNoteId' parameter is mandatory." });
@ -352,7 +351,7 @@ function register(router: Router) {
}
// This will automatically return if no ancestorNoteId is provided and there is no shareIndex
if (!(note = checkNoteAccess(ancestorNoteId, req, res))) {
if (!checkNoteAccess(ancestorNoteId, req, res)) {
return;
}