Remove unneeded return statement

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Fabio Massaioli 2025-02-25 17:19:56 +01:00 committed by GitHub
commit 11866ee52f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ const _invoke = (function () {
})();
export function invoke(msg: any): void {
return _invoke?.(msg);
_invoke?.(msg);
}
/**