chore: lint
This commit is contained in:
+1
-1
@@ -2,8 +2,8 @@
|
||||
import { computed } from 'vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
import ControlButton from './control-button.vue'
|
||||
import ControlButtonTooltip from './control-button-tooltip.vue'
|
||||
import ControlButton from './control-button.vue'
|
||||
|
||||
import { noticeWindowEventa } from '../../../../shared/eventa'
|
||||
import { useElectronEventaInvoke } from '../../../composables/electron-vueuse/use-electron-eventa-context'
|
||||
|
||||
+1
-1
@@ -5,8 +5,8 @@ import { useTheme } from '@proj-airi/ui'
|
||||
import { storeToRefs } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
|
||||
import ControlButton from './control-button.vue'
|
||||
import ControlButtonTooltip from './control-button-tooltip.vue'
|
||||
import ControlButton from './control-button.vue'
|
||||
import ControlsIslandFadeOnHover from './controls-island-fade-on-hover.vue'
|
||||
import ControlsIslandHearingConfig from './controls-island-hearing-config.vue'
|
||||
import IndicatorMicVolume from './indicator-mic-volume.vue'
|
||||
|
||||
@@ -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