Skip to content

Commit 7bb8f70

Browse files
committed
fix: line
1 parent e031296 commit 7bb8f70

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

angularfire-start/firebase.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@
6060
]
6161
}
6262
]
63-
}
63+
}

angularfire-start/firestore.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ service cloud.firestore {
66
allow read, write;
77
}
88
}
9-
}
9+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
node_modules/
1+
node_modules/

angularfire-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
"tailwindcss": "^3.3.2",
4040
"typescript": "~5.0.2"
4141
}
42-
}
42+
}

angularfire-start/src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
<div class="container">
44
</div>
55
<router-outlet></router-outlet>
6-
</div>
6+
</div>

angularfire-start/src/app/components/header/header.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@
4040
</div>
4141
</div>
4242
</nav>
43-
</header>
43+
</header>

angularfire-start/src/app/pages/chat-page/chat-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
</button>
3737
</div>
3838
</div>
39-
</div>
39+
</div>
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export const environment = {
22
firebase: {
3-
apiKey: "API_KEY",
4-
authDomain: "PROJECT_ID.firebaseapp.com",
5-
databaseURL: "https://PROJECT_ID.firebaseio.com",
6-
projectId: "PROJECT_ID",
7-
storageBucket: "PROJECT_ID.appspot.com",
8-
messagingSenderId: "SENDER_ID",
9-
appId: "APP_ID",
10-
measurementId: "G-MEASUREMENT_ID",
3+
apiKey: 'API_KEY',
4+
authDomain: 'PROJECT_ID.firebaseapp.com',
5+
databaseURL: 'https://PROJECT_ID.firebaseio.com',
6+
projectId: 'PROJECT_ID',
7+
storageBucket: 'PROJECT_ID.appspot.com',
8+
messagingSenderId: 'SENDER_ID',
9+
appId: 'APP_ID',
10+
measurementId: 'G-MEASUREMENT_ID',
1111
},
12-
};
12+
};
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<main>
2-
<div *ngIf="user$ | async as user; else showLogin">
3-
<h1 class="title">{{ user.displayName }}</h1>
4-
</div>
5-
<ng-template #showLogin>
6-
<h1 class="title">FriendlyTravels</h1>
7-
<h2 class="description">A travel blog built by AngularFire</h2>
8-
<button class="login-button" (click)="login()">Login</button>
9-
</ng-template>
10-
</main>
2+
<div *ngIf="user$ | async as user; else showLogin">
3+
<h1 class="title">{{ user.displayName }}</h1>
4+
</div>
5+
<ng-template #showLogin>
6+
<h1 class="title">FriendlyTravels</h1>
7+
<h2 class="description">A travel blog built by AngularFire</h2>
8+
<button class="login-button" (click)="login()">Login</button>
9+
</ng-template>
10+
</main>

0 commit comments

Comments
 (0)