fix: file editor not updating state properly

This commit is contained in:
2025-05-09 16:07:13 +00:00
parent 4ddc54d528
commit 8f05a04350

View File

@ -324,9 +324,10 @@ export const usePrfStore = defineStore('prf', () => {
const generalStore = useGeneralStore();
const configDir = computed(async () => {
const title = `profile-${current.value?.meta.game}-${current.value?.meta.name}`;
return path.join(
await generalStore.configDir,
`profile-${current.value?.meta.game}-${current.value?.meta.name}`
title
);
});