chore: lint
This commit is contained in:
@@ -39,7 +39,7 @@ onMounted(() => {
|
||||
})
|
||||
|
||||
const characters = computed(() => Array.from(characterStore.characters.values()).map((char) => {
|
||||
const i18n = char.i18n[0] || { name: 'Unknown', tagline: '', description: '' }
|
||||
const i18n = char.i18n?.[0] || { name: 'Unknown', tagline: '', description: '' }
|
||||
|
||||
return {
|
||||
id: char.id,
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
export { default as Live2DScene } from './Live2D.vue'
|
||||
export { Live2DCanvas, Live2DModel } from './live2d'
|
||||
export { default as Live2DScene } from './Live2D.vue'
|
||||
|
||||
@@ -6,8 +6,8 @@ export { default as ProviderBasicSettings } from './provider-basic-settings.vue'
|
||||
export { default as ProviderSettingsContainer } from './provider-settings-container.vue'
|
||||
export { default as ProviderSettingsLayout } from './provider-settings-layout.vue'
|
||||
|
||||
export { default as SpeechPlayground } from './speech-playground.vue'
|
||||
export { default as SpeechPlaygroundOpenAICompatible } from './speech-playground-openai-compatible.vue'
|
||||
export { default as SpeechPlayground } from './speech-playground.vue'
|
||||
export { default as SpeechProviderSettings } from './speech-provider-settings.vue'
|
||||
|
||||
export { default as TranscriptionPlayground } from './transcription-playground.vue'
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { ChatHistoryItem } from '../types/chat'
|
||||
|
||||
import { isStageTamagotchi } from '@proj-airi/stage-shared'
|
||||
import { useLive2d } from '@proj-airi/stage-ui-live2d'
|
||||
|
||||
import { useChatStore } from '../stores/chat'
|
||||
import { useDisplayModelsStore } from '../stores/display-models'
|
||||
import { useLive2d } from '@proj-airi/stage-ui-live2d'
|
||||
import { useMcpStore } from '../stores/mcp'
|
||||
import { useAiriCardStore } from '../stores/modules/airi-card'
|
||||
import { useConsciousnessStore } from '../stores/modules/consciousness'
|
||||
|
||||
Reference in New Issue
Block a user