Closed5

create-react-app+redux関連

こまきちこまきち

環境変数を設定する際に REACT_APPから始める必要があって非常に見づらくなる

こまきちこまきち
Expected type 'fh', but it was: a custom Fn object FirebaseError: Expected type 'fh', but it was: a custom Fn object

カスタムFnなんてつくってないぞ。と思ったけど、importがliteからやってたので変更するとエラーメッセージが変わった。

before

import { collection, query } from 'firebase/firestore/lite';

after

import { collection, query } from 'firebase/firestore';
このスクラップは2023/05/06にクローズされました