Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 7eb3f90

Browse files
cleanup, bump
1 parent 5b02101 commit 7eb3f90

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/labeler@v2
10+
- uses: actions/labeler
1111
with:
1212
repo-token: "${{ secrets.GITHUB_TOKEN }}"

demo/app/main-view-model.ts

+1
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ export class HelloWorldModel extends Observable {
411411
analyticsCollectionEnabled: false, // default true
412412
onAuthStateChanged: data => { // optional
413413
console.log((data.loggedIn ? "Logged in to firebase" : "Logged out from firebase") + " (init's onAuthStateChanged callback)");
414+
console.log(JSON.stringify(data));
414415
if (data.loggedIn) {
415416
this.set("userEmailOrPhone", data.user.email ? data.user.email : (data.user.phoneNumber ? data.user.phoneNumber : "N/A"));
416417
}

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-plugin-firebase",
3-
"version": "10.1.1",
3+
"version": "10.1.2",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",

0 commit comments

Comments
 (0)