This commit is contained in:
Natsumi
2025-10-09 00:23:42 +13:00
parent fa0b742309
commit f09a63e9cf
13 changed files with 33 additions and 34 deletions

View File

@@ -287,6 +287,10 @@ export const useUserStore = defineStore('User', () => {
const cachedUsers = new Map();
const isLocalUserVrcPlusSupporter = computed(
() => state.currentUser.$isVRCPlus
);
const currentUser = computed({
get: () => state.currentUser,
set: (value) => {
@@ -2019,6 +2023,7 @@ export const useUserStore = defineStore('User', () => {
showUserDialogHistory,
customUserTags,
cachedUsers,
isLocalUserVrcPlusSupporter,
applyCurrentUser,
applyUser,
showUserDialog,