suparisma 1.0.6 → 1.0.7
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.
|
@@ -532,7 +532,7 @@ export function createSuparismaHook<
|
|
|
532
532
|
// Single data collection for holding results
|
|
533
533
|
const [data, setData] = useState<TWithRelations[]>([]);
|
|
534
534
|
const [error, setError] = useState<Error | null>(null);
|
|
535
|
-
const [loading, setLoading] = useState<boolean>(
|
|
535
|
+
const [loading, setLoading] = useState<boolean>(true);
|
|
536
536
|
|
|
537
537
|
// This is the total count, unaffected by pagination limits
|
|
538
538
|
const [count, setCount] = useState<number>(0);
|
package/package.json
CHANGED