Andrei Dragu
Andrei Dragu
@marbemac your solution is nice but it adds a lot of unnecessary packages to package.json and I find it difficult to keep only the used ones in an automated manner....
My approach was to use a type guard: ```typescript import type { FirebaseAuthError } from 'firebase-admin/lib/utils/error' export const isFirebaseAuthError = (error: unknown): error is FirebaseAuthError => { return (error as...
I just created a new project, following https://www.sanity.io/docs/create-a-sanity-project with these properties: ``` ? Project name: sanity-tutorial Your content will be stored in a dataset that can be public or private,...