fix: restore full gate

This commit is contained in:
Peter Steinberger
2026-03-18 03:39:02 +00:00
parent ea476de1e4
commit 0cddb5fb7c
26 changed files with 333 additions and 186 deletions

View File

@@ -68,7 +68,7 @@ let webLoginQrPromise: Promise<
> | null = null;
let webChannelPromise: Promise<typeof import("../../channels/web/index.js")> | null = null;
let whatsappActionsPromise: Promise<
typeof import("../../../extensions/whatsapp/action-runtime.runtime.js")
typeof import("../../../extensions/whatsapp/action-runtime-api.js")
> | null = null;
function loadWebLoginQr() {
@@ -82,7 +82,7 @@ function loadWebChannel() {
}
function loadWhatsAppActions() {
whatsappActionsPromise ??= import("../../../extensions/whatsapp/action-runtime.runtime.js");
whatsappActionsPromise ??= import("../../../extensions/whatsapp/action-runtime-api.js");
return whatsappActionsPromise;
}