From 2f6aecae0ba7735093a98290d3ba834f58dd5b69 Mon Sep 17 00:00:00 2001 From: Dominic Bachmann Date: Tue, 17 Jun 2025 22:59:42 +0200 Subject: [PATCH] docs: fix invalid code in readme.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40c77f55e..e7472ba72 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ interface Item { export class AppComponent { firestore = inject(Firestore); itemCollection = collection(this.firestore, 'items'); - item$ = collectionData(itemCollection); + item$ = collectionData(this.itemCollection); } ```