@rnmapbox/maps 10.0.15-rc.0 → 10.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -229,11 +229,11 @@ abstract class RCTLayer<T : Layer?>(protected var mContext: Context) : AbstractS
229
229
  mLayer?.let { layer ->
230
230
  mAboveLayerID?.also {
231
231
  addAbove(mapView, it)
232
- } ?: { mBelowLayerID?.also {
232
+ } ?: run { mBelowLayerID?.also {
233
233
  addBelow(mapView, it)
234
- } ?: { mLayerIndex?.also {
234
+ } ?: run { mLayerIndex?.also {
235
235
  addAtIndex(it)
236
- } ?: {
236
+ } ?: run {
237
237
  add ()
238
238
  } } }
239
239
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rnmapbox/maps",
3
3
  "description": "A Mapbox react native module for creating custom maps",
4
- "version": "10.0.15-rc.0",
4
+ "version": "10.0.15",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },