diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54f1c7c..8c020fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -178,7 +178,7 @@ jobs: android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-x86_64.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-x86.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-universal.apk - android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-android_5-universal.apk android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-sl-arm64-v8a.apk + # android/app/build/outputs/apk/release/lx-music-mobile-v${{ env.PACKAGE_VERSION }}-android_5-universal.apk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/components/common/DrawerLayoutFixed.tsx b/src/components/common/DrawerLayoutFixed.tsx index 07475cc..6f198bd 100644 --- a/src/components/common/DrawerLayoutFixed.tsx +++ b/src/components/common/DrawerLayoutFixed.tsx @@ -18,7 +18,7 @@ export interface DrawerLayoutFixedType { const DrawerLayoutFixed = forwardRef(({ visibleNavNames, widthPercentage, widthPercentageMax, children, ...props }, ref) => { const drawerLayoutRef = useRef(null) - const [w, setW] = useState('100%') + const [w, setW] = useState('100%') const [drawerWidth, setDrawerWidth] = useState(0) const changedRef = useRef({ width: 0, changed: false }) diff --git a/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx b/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx index 3c3a4fd..39aa0e7 100644 --- a/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx +++ b/src/screens/PlayDetail/components/SettingPopup/settings/SettingPlaybackRate.tsx @@ -17,7 +17,7 @@ import settingState from '@/store/setting/state' const MIN_VALUE = 60 const MAX_VALUE = 200 -const Volume = () => { +export default () => { const theme = useTheme() const playbackRate = Math.trunc(useSettingValue('player.playbackRate') * 100) const [sliderSize, setSliderSize] = useState(playbackRate) @@ -71,4 +71,3 @@ const Volume = () => { ) } -export default Volume