This commit is contained in:
Henry Jameson 2026-09-04 00:18:58 +03:00
commit ded8ae863d
2 changed files with 2 additions and 2 deletions

View file

@ -1,10 +1,10 @@
import { defineStore } from 'pinia'
import followRequestFetcher from 'src/stores/fetchers/follow_requests.js'
import { useInterfaceStore } from 'src/stores/interface.js'
import { useMergedConfigStore } from 'src/stores/merged_config.js'
import { useNotificationsStore } from 'src/stores/notifications.js'
import { useOAuthStore } from 'src/stores/oauth.js'
import { useInterfaceStore } from 'src/stores/interface.js'
import { approveUser, denyUser } from 'src/api/user.js'

View file

@ -788,7 +788,7 @@ export const useUsersStore = defineStore('users', {
useListsStore().startFetching()
useBookmarkFoldersStore().startFetching()
useChatsStore().startFetching()
if (user.locked) {
if (this.currentUser.locked) {
useFollowRequestsStore().startFetching()
}
})