5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 05:50:54 +08:00

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
parent b74b9efa8e
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);
}
/**