You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am facing this kind of issues: [Error: [firestore/permission-denied] The caller does not have permission to execute the specified [operation.]
here App.js file
/**
*/
import React from 'react';
import Home from './home';
export default () => {
}
//end of App
home.js
import React, { useEffect, useState } from 'react';
import { SafeAreaView, View, Text, TouchableOpacity } from 'react-native';
import actions from './auth';
import orders from './orders';
import menus from './menu';
export default () => {
}
// end of home.js
//auth.js
import auth from '@react-native-firebase/auth';
export default {
auth: () => {
}
// end of auth
// home.js
import firestore from '@react-native-firebase/firestore';
const db = firestore().collection("menus");
export default {
}
// end of menu.js
// orders.js
import firestore from '@react-native-firebase/firestore';
const db = firestore().collection('orders');
export default {
}
// firebase rules
match /orders/{id} {
Beta Was this translation helpful? Give feedback.
All reactions