Cloud firestore says Document not found #4805
-
I am building an app where I create a document with the name as some random string generated and is succeeds Code bellow. `import React, {useState} from 'react'; const CreateGame = ({route, navigation}) => { const {code} = route.params; const styles = StyleSheet.create({ export default CreateGame; But when I try to update some value of that same document, ( that means I know the name of document in advance ) it shows an error like bellow const JoinGame = ({route, navigation}) => { return ( const styles = StyleSheet.create({ export default JoinGame; |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is not the way to go about filing a bug report in this repository, sorry. If you have an issue, please open an issue following the template. Please make sure you have up to date versions, and provide a self-contained App.js that reproduces the problem (including any necessary data creation) when dropped in a clean project. 99% of the time, the act of reducing the problem to a reproducible example on a clean project shows a coding error and that's the answer - when it doesn't, we have a clean basis to reproduce it and issue a fix. Thanks |
Beta Was this translation helpful? Give feedback.
This is not the way to go about filing a bug report in this repository, sorry. If you have an issue, please open an issue following the template. Please make sure you have up to date versions, and provide a self-contained App.js that reproduces the problem (including any necessary data creation) when dropped in a clean project. 99% of the time, the act of reducing the problem to a reproducible example on a clean project shows a coding error and that's the answer - when it doesn't, we have a clean basis to reproduce it and issue a fix. Thanks