fix some not a function errors

This commit is contained in:
pa
2025-10-01 00:33:09 +09:00
committed by Natsumi
parent 5aad0559a0
commit f9229b08b1

View File

@@ -317,7 +317,9 @@ export const useVrcxStore = defineStore('Vrcx', () => {
});
instanceStore.cachedInstances.forEach((ref, id) => {
if (
friendStore.friends.values().some((f) => f.$location.tag === id)
[...friendStore.friends.values()].some(
(f) => f.$location.tag === id
)
) {
return;
}