From 55c33876dee7c5aab10172142c31e8832d7ba978 Mon Sep 17 00:00:00 2001 From: Ollie Silviotti Date: Mon, 1 Sep 2025 14:07:18 +0100 Subject: [PATCH] fix: use eventName in logEvent for Android --- android/src/main/java/com/mparticle/react/MParticleModule.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/java/com/mparticle/react/MParticleModule.kt b/android/src/main/java/com/mparticle/react/MParticleModule.kt index cb6b827..0253860 100644 --- a/android/src/main/java/com/mparticle/react/MParticleModule.kt +++ b/android/src/main/java/com/mparticle/react/MParticleModule.kt @@ -73,7 +73,7 @@ class MParticleModule( val event = MPEvent - .Builder(name, eventType) + .Builder(eventName, eventType) .customAttributes(attributes) .build() MParticle.getInstance()?.logEvent(event)