Skip to content

Commit

Permalink
fix: Fix unsupported top level event type (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
janicduplessis authored Nov 5, 2024
1 parent 82b60fc commit 5c59d71
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal class LoadStartEvent(
override fun getEventData(): WritableMap = Arguments.createMap()

companion object {
const val EVENT_NAME = "topBlurhashLoadStart"
const val EVENT_NAME = "topLoadStart"
}
}

Expand All @@ -36,7 +36,7 @@ internal class LoadEndEvent(
override fun getEventData(): WritableMap = Arguments.createMap()

companion object {
const val EVENT_NAME = "topBlurhashLoadEnd"
const val EVENT_NAME = "topLoadEnd"
}
}

Expand All @@ -51,7 +51,7 @@ internal class LoadErrorEvent(
Arguments.createMap().apply { putString("message", message) }

companion object {
const val EVENT_NAME = "topBlurhashLoadError"
const val EVENT_NAME = "topLoadError"
}
}

Expand Down

0 comments on commit 5c59d71

Please sign in to comment.