fix: 修正文件名大小写以保持一致性;注释掉调试日志
This commit is contained in:
parent
b55c95ce14
commit
dc2d6090d2
|
|
@ -19,7 +19,7 @@ const navItems = [
|
|||
{ id: 'index', label: '探索', iconName: 'compass-outline' },
|
||||
{ id: 'generate', label: '生成', iconName: 'image-outline' },
|
||||
{ id: 'sync', label: '同步', iconName: 'refresh' },
|
||||
{ id: 'explore', label: '蓝牙调试', iconName: 'person-outline' },
|
||||
// { id: 'explore', label: '蓝牙调试', iconName: 'person-outline' },
|
||||
]
|
||||
|
||||
function renderNavItem(item: (typeof navItems)[0], isActive: boolean, onRouteChange: (route: string) => void) {
|
||||
|
|
|
|||
|
|
@ -968,8 +968,8 @@ const GalleryRenderer = memo(({ selectedItem }: { selectedItem: any }) => {
|
|||
|
||||
const ManagerView = observer(({ viewState, onBack }: { viewState: string; onBack: () => void }) => {
|
||||
const { isScanning, discoveredDevices } = bleStore.state
|
||||
console.log('isScanning------------', isScanning)
|
||||
console.log('discoveredDevices------------', discoveredDevices)
|
||||
// console.log('isScanning------------', isScanning)
|
||||
// console.log('discoveredDevices------------', discoveredDevices)
|
||||
|
||||
if (viewState !== 'manager') return null
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ import { bleManager } from '@/ble/managers/bleManager'
|
|||
import { HotUpdate } from '@/components/hot-update'
|
||||
import { useColorScheme } from '@/hooks/use-color-scheme'
|
||||
import { setupGlobalFetchLogger } from '@/lib/fetch-logger'
|
||||
import { useUserSession } from '@/stores/UserStore'
|
||||
import { useUserSession } from '@/stores/userStore'
|
||||
|
||||
const isProd = process.env.EXPO_PUBLIC_ENV !== 'development'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
export { bleStore } from './BleStore'
|
||||
export { userBalanceStore } from './UserBalanceStore'
|
||||
export { userStore } from './UserStore'
|
||||
export { bleStore } from './bleStore'
|
||||
export { userBalanceStore } from './userBalanceStore'
|
||||
export { userStore } from './userStore'
|
||||
|
|
|
|||
Loading…
Reference in New Issue