0
0
Fork 0

fix: update file path in useDescriptorStore to remove leading slash

This commit is contained in:
Alex Moreno 2025-03-25 11:30:09 +01:00
parent 68e37aca9f
commit 9446202dee
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export const useDescriptorStore = defineStore('descriptorStore', () => {
if (Object.keys(descriptors).length) return descriptors;
const currentDescriptors = {};
const files = import.meta.glob(`/src/**/*DescriptorProxy.vue`);
const files = import.meta.glob(`src/**/*DescriptorProxy.vue`);
const moduleParser = {
account: 'user',
client: 'customer',