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>(false);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suparisma",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Opinionated typesafe React realtime CRUD hooks generator for all your Supabase tables, powered by Prisma.",
5
5
  "main": "dist/index.js",
6
6
  "repository": {