We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d21a3 commit fa61caeCopy full SHA for fa61cae
sentry-compose/src/androidMain/kotlin/io/sentry/compose/gestures/ComposeGestureTargetLocator.kt
@@ -117,8 +117,9 @@ public class ComposeGestureTargetLocator(private val logger: ILogger) : GestureT
117
val modifiers = node.getModifierInfo()
118
for (index in modifiers.indices) {
119
val modifierInfo = modifiers[index]
120
- composeHelper.extractTag(modifierInfo.modifier).also {
121
- return it
+ val tag = composeHelper.extractTag(modifierInfo.modifier)
+ if (tag != null) {
122
+ return tag
123
}
124
125
return null
0 commit comments