more type errors

This commit is contained in:
Samuel Newman
2025-09-11 12:24:56 +03:00
parent 9847f7338e
commit 91b6d32c5d
2 changed files with 2 additions and 2 deletions
@@ -333,9 +333,9 @@ function ChatListItemReady({
return (
<GestureActionView actions={actions}>
<View
// @ts-expect-error web only
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
// @ts-expect-error web only
onFocus={onFocus}
onBlur={onMouseLeave}
style={[a.relative, t.atoms.bg]}>
+1 -1
View File
@@ -420,7 +420,7 @@ function DevOptions() {
{
style: 'default',
text: 'Apply',
onPress: channel => {
onPress: (channel?: string) => {
tryApplyUpdate(channel ?? '')
},
},