From 11866ee52f1b930d87a78046ae15af662b51c155 Mon Sep 17 00:00:00 2001 From: Fabio Massaioli Date: Tue, 25 Feb 2025 17:19:56 +0100 Subject: [PATCH] Remove unneeded return statement Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- v3/internal/runtime/desktop/@wailsio/runtime/src/system.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/internal/runtime/desktop/@wailsio/runtime/src/system.ts b/v3/internal/runtime/desktop/@wailsio/runtime/src/system.ts index 444c49ef2..cc160d03b 100644 --- a/v3/internal/runtime/desktop/@wailsio/runtime/src/system.ts +++ b/v3/internal/runtime/desktop/@wailsio/runtime/src/system.ts @@ -32,7 +32,7 @@ const _invoke = (function () { })(); export function invoke(msg: any): void { - return _invoke?.(msg); + _invoke?.(msg); } /**