mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 14:26:06 +02:00
notifications v2 table
This commit is contained in:
@@ -93,9 +93,9 @@ export const useSharedFeedStore = defineStore('SharedFeed', () => {
|
||||
);
|
||||
|
||||
watch(
|
||||
() => watchState.isLoggedIn,
|
||||
(isLoggedIn) => {
|
||||
if (isLoggedIn) {
|
||||
() => [watchState.isFriendsLoaded, watchState.isFavoritesLoaded],
|
||||
([isFriendsLoaded, isFavoritesLoaded]) => {
|
||||
if (isFriendsLoaded && isFavoritesLoaded) {
|
||||
sharedFeedData.value = [];
|
||||
loadSharedFeed();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user