gemi 0.4.31 → 0.4.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/index.js +1 -1
- package/package.json +1 -1
package/dist/client/index.js
CHANGED
|
@@ -30392,7 +30392,7 @@ function useUser() {
|
|
|
30392
30392
|
}
|
|
30393
30393
|
);
|
|
30394
30394
|
if (loading) {
|
|
30395
|
-
return null;
|
|
30395
|
+
return { user: null, loading, error };
|
|
30396
30396
|
}
|
|
30397
30397
|
return { user: data == null ? void 0 : data.user, loading, error };
|
|
30398
30398
|
}
|