fix current directory not updating when modifying stuff

This commit is contained in:
2025-07-18 15:01:38 +02:00
parent 48cbd532c2
commit ec8e73507c
4 changed files with 29 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
export function useWarrenPath() {
const store = useWarrenStore();
if (store.current == null) {
return null;
}
return `${store.current.warrenId}/${store.current.path}`;
}