From b9ce69c1c812edad2950be3b5de23350a1af442e Mon Sep 17 00:00:00 2001 From: HalfManBear <89969229+halfmanbear@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:22:17 +0100 Subject: [PATCH] Update compileFilamentList.js --- src/pages/Generator/compileFilamentList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Generator/compileFilamentList.js b/src/pages/Generator/compileFilamentList.js index 5e1f4c7..3221862 100644 --- a/src/pages/Generator/compileFilamentList.js +++ b/src/pages/Generator/compileFilamentList.js @@ -5,8 +5,8 @@ export default async function compileFilamentList() { const profile = await filaments[key](); return { name: profile.name.replace("-OpenNept4une", ""), - identifier: key.split('/').pop().replace('.json', ''), // Use the file name without the extension as identifier - profile: profile + identifier: key.split('/').pop().replace('.json', ''), + profile: profile // Ensure the profile is fully loaded }; })); return filamentList;