We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6eb9f2 commit 6621027Copy full SHA for 6621027
auth/useAuthState.ts
@@ -1,6 +1,6 @@
1
import { auth, User } from 'firebase';
2
import { useEffect } from 'react';
3
-import { useLoadingValue } from '../util';
+import useLoadingValue from '../util/useLoadingValue';
4
5
export type AuthStateHook = {
6
user?: firebase.User;
database/useList.ts
@@ -167,7 +167,7 @@ export default (query: database.Query): ListHook => {
167
return {
168
error: state.error,
169
loading: state.loading,
170
- value: state.value,
+ value: state.value.values,
171
};
172
173
0 commit comments