From 01127d651e59e4c321d01ff370d56a87c50770d0 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 27 Dec 2023 20:08:57 +0000 Subject: [PATCH] Fix app context --- project/src/context/ApplicationContext.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/context/ApplicationContext.ts b/project/src/context/ApplicationContext.ts index 7fc19efd..4047d8a6 100644 --- a/project/src/context/ApplicationContext.ts +++ b/project/src/context/ApplicationContext.ts @@ -24,7 +24,7 @@ export class ApplicationContext { if (this.variables.has(type)) { - return this.variables.get(type)?.getTail()?.getValue(); + return this.variables.get(type)?.getTail(); } }