Skip to content

Commit 6e49a47

Browse files
committed
remove Kotlin/JS IR fixes for now
1 parent 7ffa0ed commit 6e49a47

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/pull_request.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929
run: "firebase emulators:start --config=./test/firebase.json &"
3030
- name: Assemble
3131
run: ./gradlew assemble
32-
- name: Compile Kotlin/JS IR
33-
run: ./gradlew compileTestDevelopmentExecutableKotlinJsIr compileTestProductionExecutableKotlinJsIr
3432
- name: Run JS Tests
3533
run: ./gradlew cleanTest jsLegacyTest
3634
- name: Upload JS test artifact

firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/user.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ expect class FirebaseUser {
2828
suspend fun updateEmail(email: String)
2929
suspend fun updatePassword(password: String)
3030
suspend fun updatePhoneNumber(credential: PhoneAuthCredential)
31-
suspend fun updateProfile(displayName: String?, photoUrl: String?)
31+
suspend fun updateProfile(displayName: String? = this.displayName, photoUrl: String? = this.photoURL)
3232
suspend fun verifyBeforeUpdateEmail(newEmail: String, actionCodeSettings: ActionCodeSettings? = null)
3333
}
3434

0 commit comments

Comments
 (0)