refactor: renamed built_in_modules into modules

This commit is contained in:
2025-10-21 12:34:42 +04:00
parent 4d5723bc72
commit 57a7ab0871
12 changed files with 202 additions and 208 deletions

View File

@ -36,7 +36,7 @@ const useProjectsContextState = (): ProjectsContextState => {
const modulesSet = useMemo(
() =>
new Set(
selectedProject?.builtInModules.map(m => m.key as ModuleNames)
selectedProject?.modules.map(m => m.key as ModuleNames)
),
[selectedProject]
);