Daniel La Rocque
Daniel La Rocque
Hi @ErionTp, thanks for submitting this issue. I was able to produce a minimal reproduction: 1. `npx create-expo-app testapp` 2. `cd testapp` 3. `npm install firebase` 4. Edit `app/(tabs)/index.tsx` to...
Hi @dckz74, I was not able to reproduce the issue. I attempted to reproduce the issue with the following steps: 1. `npm create vite@latest` 2. `cd vite-app` 3. `yarn install...
> Hey @dlarocque, thanks for your quick response! > > You are right, this does not reproduce the issue, my bad. Unfortunately, I am currently not able to give you...
Thank you so much for the great minimal reproduction project with steps! I was able to successfully reproduce the issue, and we are looking into it.
Hi @frankA10019, I was unable to get this code working. Could you provide additional information: - How and where are you running the application? - Are you using React? -...
> Hi @dlarocque, > > 1. I run my application with nx. [nx official website](https://nx.dev/nx-api/react) > 2. Yes, I use React. > 3. Configs.firebaseFile is a path that show where...
Hi @bonarjs @shangyilim , thanks for reporting the issue! We believe this is caused by requests to the backend taking too long and being timed out. The fix for this...
> This is the related code snippets that uses firebase functions: > > ``` > useEffect(() => { > async function authenticate() { > onAuthStateChanged(FIREBASE_AUTH, (user) => { > if...
Hi @EssaadaniYounes Could you try modifying your sharp code to be: ```javascript const sharped = await sharp(image) .raw() .ensureAlpha() .resize(size.width, size.height, { fit: "inside" }) .jpeg() // Write it in...
After some reproduction attempts, here's what I've found: **Silent Push** I have not been able to reproduce this issue. My PWA continues to receive notifications (I have sent 50+) even...