From 2db0eff70f6b202ff894136b84d1bf148f1641c8 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 2 Jun 2023 10:00:04 +0200 Subject: [PATCH] Fix incorrect `USERACTIVATION_CALLBACKID` import (15618 follow-up) This constant is currently imported from the wrong file, where it doesn't exist; see PR 15618. --- src/scripting_api/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting_api/event.js b/src/scripting_api/event.js index ba0aa8967..3549fa0e2 100644 --- a/src/scripting_api/event.js +++ b/src/scripting_api/event.js @@ -13,7 +13,7 @@ * limitations under the License. */ -import { USERACTIVATION_CALLBACKID } from "./doc.js"; +import { USERACTIVATION_CALLBACKID } from "./app.js"; const USERACTIVATION_MAXTIME_VALIDITY = 5000;