diff --git a/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/Live2DScene.vue b/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/Live2DScene.vue
index e430b3e62..125e5218e 100644
--- a/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/Live2DScene.vue
+++ b/packages/stage-ui/src/components/Scenarios/Settings/ModelSettings/Live2DScene.vue
@@ -1,10 +1,10 @@
diff --git a/packages/stage-ui/src/components/Scenes/VRM.vue b/packages/stage-ui/src/components/Scenes/VRM.vue
index 01431fdb4..ae13f13d6 100644
--- a/packages/stage-ui/src/components/Scenes/VRM.vue
+++ b/packages/stage-ui/src/components/Scenes/VRM.vue
@@ -3,7 +3,7 @@ import { TransitionVertical } from '@proj-airi/ui'
import { OrbitControls } from '@tresjs/cientos'
import { TresCanvas } from '@tresjs/core'
import { storeToRefs } from 'pinia'
-import { computed, ref } from 'vue'
+import { ref } from 'vue'
import { useI18n } from 'vue-i18n'
import DataGuiRange from '../DataGui/Range.vue'
@@ -24,7 +24,7 @@ const emit = defineEmits<{
const show = ref(false)
-const { modelFile, modelUrl, loadSource, selectedModel } = storeToRefs(useVRM())
+const { selectedModel } = storeToRefs(useVRM())
const cameraPositionX = ref(-0.17)
const cameraPositionY = ref(0)
diff --git a/packages/stage-ui/src/stores/vrm.ts b/packages/stage-ui/src/stores/vrm.ts
index d320344f0..adaf48143 100644
--- a/packages/stage-ui/src/stores/vrm.ts
+++ b/packages/stage-ui/src/stores/vrm.ts
@@ -48,4 +48,3 @@ export const useVRM = defineStore('vrm', () => {
selectedModel, // Expose the new computed property
}
})
-
diff --git a/tsconfig.json b/tsconfig.json
index b105206d8..90616c698 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -9,7 +9,7 @@
"noUnusedParameters": true,
"noEmit": true,
"esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
+ "forceConsistentCasingInFileNames": false,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true