File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const App: () => Node = () => {
51
51
console .log (' LOAD' );
52
52
let query = userCollection .orderBy (' age' ); // sort the data
53
53
if (lastDocument !== undefined ) {
54
- query = query.. startAfter (lastDocument); // fetch data following the last document accessed
54
+ query = query .startAfter (lastDocument); // fetch data following the last document accessed
55
55
}
56
56
query .limit (3 ) // limit to your page size, 3 is just an example
57
57
.get ()
@@ -121,7 +121,7 @@ const App: () => Node = () => {
121
121
console .log (' LOAD' );
122
122
let query = userCollection .orderBy (' age' ); // sort the data
123
123
if (lastDocument !== undefined ) {
124
- query = query.. startAfter (lastDocument); // fetch data following the last document accessed
124
+ query = query .startAfter (lastDocument); // fetch data following the last document accessed
125
125
}
126
126
query .limit (3 ) // limit to your page size, 3 is just an example
127
127
.get ()
You can’t perform that action at this time.
0 commit comments