Fix VIP filter at startup for feed and gameLog

This commit is contained in:
Natsumi
2025-10-03 12:24:41 +13:00
parent d5082d894b
commit 61bc798b91
6 changed files with 31 additions and 11 deletions

View File

@@ -1,7 +1,8 @@
import { reactive } from 'vue';
const watchState = reactive({
isLoggedIn: false,
isFriendsLoaded: false
isFriendsLoaded: false,
isFavoritesLoaded: false
});
export { watchState };