Skip to content

Commit 7a2ef69

Browse files
committed
fix(app): address code review feedback
1 parent 3c13462 commit 7a2ef69

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

firestore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Follow these steps to have a working version of the quickstart running with the
9292
```bash
9393
npm run production
9494
```
95-
> **Note:** If you've opted to set up a billing plan and wish to deploy functions as well, replace the `firebase deploy --only firestore` on line 9 of `package.json` with `firebase deploy`.
95+
> **Note:** If you've opted to set up a billing plan and wish to deploy functions as well, replace the `firebase deploy --only firestore` on line 8 of `package.json` with `firebase deploy`.
9696

9797
11. (Optional) Populate production Firestore with mock data
9898

firestore/functions/GEMINI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This folder contains the backend logic for the firestore friendly eats sample ap
44

55
## Overview
66
- Source code is in `src/`
7-
- The backend logic is a firebse function that uses firebase functions and firestore triggers
7+
- The backend logic is a firebase function that uses firebase functions and firestore triggers
88

99
## Essential commands
1010
- Build with `npm build`

firestore/src/app/app.module.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
17+
import { NgModule } from '@angular/core';
1818
import { BrowserModule } from '@angular/platform-browser';
1919
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2020
import { RouterModule } from '@angular/router';
@@ -101,7 +101,6 @@ import { DefaultHomepageFirestore, HomepageFirestore } from './homepage/hompage.
101101
provideStorage(() => getStorage()),
102102
{ provide: HomepageFirestore, useClass: DefaultHomepageFirestore }
103103
],
104-
bootstrap: [AppComponent],
105-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
104+
bootstrap: [AppComponent]
106105
})
107106
export class AppModule { }

0 commit comments

Comments
 (0)