Skip to content

Commit

Permalink
add correct prefix for script
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonNekoGH committed Jan 2, 2025
1 parent 09625c4 commit 3765524
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { useMicVAD } from '../../composables/micvad'
import { useChatStore } from '../../stores/chat'
import { useSettings } from '../../stores/settings'
import BasicTextarea from '../BasicTextarea.vue'
import DesktopChatHistory from '../Widgets/TamagotchiChatHistory.vue'
import DesktopSettings from '../Widgets/TamagotchiSettings.vue'
import TamagotchiChatHistory from '../Widgets/TamagotchiChatHistory.vue'
import TamagotchiSettings from '../Widgets/TamagotchiSettings.vue'
const messageInput = ref('')
const listening = ref(false)
Expand Down Expand Up @@ -91,7 +91,7 @@ onMounted(() => {
<template>
<div>
<div relative w-full flex gap-1>
<DesktopChatHistory absolute left-0 top-0 transform="translate-y-[-100%]" w-full />
<TamagotchiChatHistory absolute left-0 top-0 transform="translate-y-[-100%]" w-full />
<div flex flex-1>
<BasicTextarea
v-model="messageInput"
Expand Down Expand Up @@ -119,7 +119,7 @@ onMounted(() => {
fixed bottom-0 left-0 right-0 z-50 mt-24 h-full flex flex-col rounded-t-lg bg="[#fffbff] dark:[#1f1a1d]"
>
<div class="flex flex-1 flex-col rounded-t-lg p-5" bg="[#fffbff] dark:[#1f1a1d]" gap-2>
<DesktopSettings />
<TamagotchiSettings />
</div>
</DrawerContent>
</DrawerPortal>
Expand Down
4 changes: 2 additions & 2 deletions packages/tamagotchi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev:tamagotchi": "npm run build && electron .",
"build": "npm run typecheck && electron-vite build && rm -rf ./out/renderer && cp -r ../stage/tamagotchi/dist/ ./out/renderer",
"dev:tamagotchi": "npm run build:tamagotchi && electron .",
"build:tamagotchi": "npm run typecheck && electron-vite build && rm -rf ./out/renderer && cp -r ../stage/tamagotchi/dist/ ./out/renderer",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
Expand Down

0 comments on commit 3765524

Please sign in to comment.