LibDevTools: Add missing return statement in the 'duplicateNode' handler

This commit is contained in:
Timothy Flynn 2025-03-11 10:41:47 -04:00 committed by Tim Flynn
commit 49b964bf19
Notes: github-actions[bot] 2025-03-12 16:49:22 +00:00

View file

@ -98,6 +98,8 @@ void WalkerActor::handle_message(StringView type, JsonObject const& message)
}
});
}
return;
}
if (type == "editTagName"sv) {