Skip to content

Commit 9118f34

Browse files
committed
Fixes some more pointer issues
1 parent 0e5aedd commit 9118f34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/toast-container.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class ToastContainer extends Component<Props, State> {
122122
<KeyboardAvoidingView
123123
behavior={Platform.OS === "ios" ? "position" : undefined}
124124
style={[styles.container, style]}
125-
pointerEvents="box-none"
125+
pointerEvents="none"
126126
>
127127
{toasts
128128
.filter((t) => !t.placement || t.placement === "bottom")
@@ -146,7 +146,7 @@ class ToastContainer extends Component<Props, State> {
146146
<KeyboardAvoidingView
147147
behavior={Platform.OS === "ios" ? "position" : undefined}
148148
style={[styles.container, style]}
149-
pointerEvents="box-none"
149+
pointerEvents="none"
150150
>
151151
{toasts
152152
.filter((t) => t.placement === "top")
@@ -177,7 +177,7 @@ class ToastContainer extends Component<Props, State> {
177177
<KeyboardAvoidingView
178178
behavior={Platform.OS === "ios" ? "position" : undefined}
179179
style={[styles.container, style]}
180-
pointerEvents="box-none"
180+
pointerEvents="none"
181181
>
182182
{toasts
183183
.filter((t) => t.placement === "center")

0 commit comments

Comments
 (0)