From f8527dec48639e070203d19ada8f04abf6aeb92c Mon Sep 17 00:00:00 2001 From: Jeff Carbo Date: Fri, 13 Jan 2023 13:32:48 -0500 Subject: [PATCH] Fix bad export --- RNGoogleAPIAvailability.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RNGoogleAPIAvailability.js b/RNGoogleAPIAvailability.js index beed601..3f4d8b1 100644 --- a/RNGoogleAPIAvailability.js +++ b/RNGoogleAPIAvailability.js @@ -1,7 +1,6 @@ 'use strict'; var ReactNative = require('react-native') -var Platform = ReactNative.Platform var GoogleAPIAvailability = ReactNative.NativeModules.ReactNativeGooglePlayServices; class RNGoogleAPIAvailability { @@ -22,4 +21,4 @@ class RNGoogleAPIAvailability { } } -module.exports = new ReactNativeGoogleAPIAvailabilityBridge(); \ No newline at end of file +module.exports = new RNGoogleAPIAvailability();