Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Jan 28, 2025
1 parent db50f94 commit 05d6ced
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions script/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ await $`npm run build:renderer`
await fs.copy('build', 'dist/build')
await fs.copy('adb', 'dist/adb')
await fs.copy('server/aya.dex', 'dist/server/aya.dex')
await fs.copy('server/scrcpy.jar', 'dist/server/scrcpy.jar')
cd('dist')

await fs.writeJson('package.json', pkg, {
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/screencast/components/Toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ import { observer } from 'mobx-react-lite'
import LunaToolbar, { LunaToolbarSeparator } from 'luna-toolbar/react'
import ToolbarIcon from '../../components/ToolbarIcon'
import { t } from '../../../common/util'
import Style from './Toolbar.module.scss'
import store from '../store'

export default observer(function Toolbar() {
const device = store.device!

return (
<LunaToolbar>
<LunaToolbar className={Style.container}>
<ToolbarIcon
icon="power"
title={t('power')}
Expand Down

0 comments on commit 05d6ced

Please sign in to comment.