Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nextjs-start/src/lib/firebase/firestore.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function getRestaurants(db = db, filters = {}) {
}

export function getRestaurantsSnapshot(cb, filters = {}) {
return;
return () => {};
}

export async function getRestaurantById(db, restaurantId) {
Expand All @@ -67,7 +67,7 @@ export async function getRestaurantById(db, restaurantId) {
}

export function getRestaurantSnapshotById(restaurantId, cb) {
return;
return () => {};
}

export async function getReviewsByRestaurantId(db, restaurantId) {
Expand Down