Skip to content

Commit 1f328bc

Browse files
committed
Fix linting
1 parent 9996c8c commit 1f328bc

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

  • webview/src/iosMain/kotlin/com/multiplatform/webview/web

webview/src/iosMain/kotlin/com/multiplatform/webview/web/WebView.ios.kt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,12 @@ fun IOSWebView(
167167
},
168168
properties =
169169
UIKitInteropProperties(
170-
interactionMode = if (state.webSettings.iOSWebSettings.scrollEnabled) {
171-
UIKitInteropInteractionMode.NonCooperative
172-
} else {
173-
UIKitInteropInteractionMode.Cooperative()
174-
},
170+
interactionMode =
171+
if (state.webSettings.iOSWebSettings.scrollEnabled) {
172+
UIKitInteropInteractionMode.NonCooperative
173+
} else {
174+
UIKitInteropInteractionMode.Cooperative()
175+
},
175176
isNativeAccessibilityEnabled = true,
176177
),
177178
)

0 commit comments

Comments
 (0)