drmencos

Results 6 comments of drmencos

Ok, is not the client. I manually added the document and the client responded with the correct nanoseconds value.

@dalenguyen, thanks for your answer. I converted the date object to a Timestamp before sending the document: ```ts myDocument.date = new Timestamp(myDocument.date._seconds, myDocument.date._nanoseconds); addDoc(collection(db, 'mycollection'), myDocument); ```

> `ERROR Error: Network error: Cannot read property 'length' of null` @WilsonLau0755, I had the same problem. Solved it by setting all `null` headers to an empty string `''`.

Solved it by changing this line: ``` import swal from 'sweetalert'; ``` to: ``` const swal = require('sweetalert'); ``` or (with the interface): ``` import { SweetAlert } from 'sweetalert/typings/core';...

You can also fix it by setting "decimalMarker": ` provideNgxMask({ thousandSeparator: ',', decimalMarker: '.' }) `

It works for me on iPhone 13 Pro on iOS 18.1.1, and even added the page from private mode ([#3](https://github.com/avadhesh18/iosPWASplash/issues/3)). Before adding the `apple-mobile-web-app-capable` tag, the splash screen wasn't working.