From 8f05a043504223a6043feef75d4b8411fabf30d3 Mon Sep 17 00:00:00 2001 From: akanyan Date: Fri, 9 May 2025 16:07:13 +0000 Subject: [PATCH] fix: file editor not updating state properly --- src/stores.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores.ts b/src/stores.ts index 0db6765..78b3e7d 100644 --- a/src/stores.ts +++ b/src/stores.ts @@ -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 ); });