From a01d2f966814fdc781fcc1c470bf594bfb8be84c Mon Sep 17 00:00:00 2001
From: matt1432 <matt@nelim.org>
Date: Wed, 17 Jan 2024 21:00:25 -0500
Subject: [PATCH] fix(ags): point to host.js

---
 modules/ags/config/js/utils.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/ags/config/js/utils.js b/modules/ags/config/js/utils.js
index 6452c2dd..90a0e7e4 100644
--- a/modules/ags/config/js/utils.js
+++ b/modules/ags/config/js/utils.js
@@ -37,5 +37,5 @@ export const transpileTypeScript = async(host) => {
 
     // The file is going to be there after transpilation
     // @ts-ignore
-    return await import('file:///tmp/ags/main.js');
+    return await import(`file:///tmp/ags/${host}.js`);
 };