From ba7c76ff049feeda4e1226804f1d35601079ce0e Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Sat, 22 Feb 2025 17:12:49 +0100 Subject: [PATCH] [nextgen/cardstack] fix timeout not applying --- labscore/cardstack/stack.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labscore/cardstack/stack.js b/labscore/cardstack/stack.js index f3f8367..ae70178 100644 --- a/labscore/cardstack/stack.js +++ b/labscore/cardstack/stack.js @@ -129,8 +129,8 @@ class DynamicCardStack { console.error("Component Handler Exception:") console.error(e) }, - onTimeout: ()=> { - this.kill(true); + onTimeout: async (_e)=> { + await this.kill(true); } })