From 531d6e43c14af41c16a0b3596784c04bbf8edf92 Mon Sep 17 00:00:00 2001 From: pa Date: Mon, 5 Jan 2026 20:03:17 +0900 Subject: [PATCH] fix setTrustColor function --- src/stores/settings/appearance.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores/settings/appearance.js b/src/stores/settings/appearance.js index 19ad8738..80ce599a 100644 --- a/src/stores/settings/appearance.js +++ b/src/stores/settings/appearance.js @@ -662,7 +662,8 @@ export const useAppearanceSettingsStore = defineStore( * @param {object} color */ function setTrustColor(color) { - trustColor.value = { ...TRUST_COLOR_DEFAULTS }; + // @ts-ignore + trustColor.value = color; configRepository.setString( 'VRCX_trustColor', JSON.stringify(trustColor.value)