Skip to content

Commit

Permalink
Update compileFilamentList.js
Browse files Browse the repository at this point in the history
  • Loading branch information
halfmanbear authored Aug 30, 2024
1 parent def87f1 commit b9ce69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Generator/compileFilamentList.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b9ce69c

Please sign in to comment.