Christina Holland
Christina Holland
> The numbers are timestamps, indicating that `indexedDB.open()` finishes instantly, however, none of the events fire. `indexedDB.open()` is async and returns a promise, so it should always continue to the...
> I am not able to reproduce this locally. I could send you a minimal version of our app with just the Firebase calls, but I'm not sure if it...
I think you are right about this being a request size issue. I was able to reproduce the issue with this snippet (plain JS, no angular needed): ``` const app...
You didn't provide any code but here's a version of it that seems to be working fine. Are you using the `Schema.object()` method? `optionalProperties` only works with `Schema.object`. We should...
I see that, let me see what I can do to fix it. In the meantime, to unblock yourself, you can temporarily use `// @ts-ignore` on that line and remove...
Looking at the code, it seems it's stored locally as whatever type of value you put in (number, string, boolean, JSON object), however if you try to get the value...
Need to wrap `params.systemInstruction` in `ChatSession` constructor with `formatSystemInstructions()` as is done in the `GenerativeModel` constructor. https://github.com/firebase/firebase-js-sdk/blob/release/packages/vertexai/src/models/generative-model.ts#L69
We can update the condition here to also check for the error that should have been parsed in the previous block: https://github.com/firebase/firebase-js-sdk/blob/8e9aac2eff5f6d5623c1412151b1c563b37ed8b7/packages/functions/src/error.ts#L161
1) Sorry I think I gave you the wrong command - it's `yarn docgen:all` (it's in the failed check) 2) Also run `yarn format` 3) You'll also need a tech...
I'm not familiar with Qwik or Vercel Edge or the architecture of your app but what I can do is tell you what causes that error in the Firebase SDK....