修改上传图片安全验证问题

This commit is contained in:
张成
2026-02-14 12:59:21 +08:00
parent 8688b6b82d
commit 64f0267457
54 changed files with 239 additions and 240 deletions

View File

@@ -76,7 +76,7 @@ export const useKeyboardStore = create<KeyboardStore>((set, get) => ({
try {
listener(height, true)
} catch (error) {
console.error('键盘监听器执行错误:', error)
console.warn('键盘监听器执行错误:', error)
}
})
})
@@ -92,7 +92,7 @@ export const useKeyboardStore = create<KeyboardStore>((set, get) => ({
try {
listener(0, false)
} catch (error) {
console.error('键盘监听器执行错误:', error)
console.warn('键盘监听器执行错误:', error)
}
})
})