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 ea159f3 commit 02fb2d1Copy full SHA for 02fb2d1
android/src/main/java/com/dooboolab/naverlogin/RNNaverLoginModule.kt
@@ -37,13 +37,15 @@ class RNNaverLoginModule(reactContext: ReactApplicationContext) : ReactContextBa
37
consumerKey: String,
38
consumerSecret: String,
39
appName: String,
40
- ) = UiThreadUtil.runOnUiThread {
41
- NaverIdLoginSDK.initialize(
42
- reactApplicationContext,
43
- clientId = consumerKey,
44
- clientSecret = consumerSecret,
45
- clientName = appName,
46
- )
+ ) {
+ UiThreadUtil.runOnUiThread {
+ NaverIdLoginSDK.initialize(
+ reactApplicationContext,
+ clientId = consumerKey,
+ clientSecret = consumerSecret,
+ clientName = appName,
47
+ )
48
+ }
49
}
50
51
@ReactMethod
0 commit comments