mirror of
				https://github.com/i701/sarlink-portal.git
				synced 2025-10-31 16:07:00 +00:00 
			
		
		
		
	chore: add skeletons to tables and loading.tsx files for routes and run formatting ♻️
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Build and Push Docker Images / Build and Push Docker Images (push) Successful in 12m20s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Build and Push Docker Images / Build and Push Docker Images (push) Successful in 12m20s
				
			This commit is contained in:
		| @@ -1,4 +1,5 @@ | ||||
| import { Suspense } from "react"; | ||||
| import DevicesTableSkeleton from "@/components/device-table-skeleton"; | ||||
| import { DevicesTable } from "@/components/devices-table"; | ||||
| import DynamicFilter from "@/components/generic-filter"; | ||||
|  | ||||
| @@ -51,7 +52,15 @@ export default async function ParentalControl({ | ||||
| 					]} | ||||
| 				/>{" "} | ||||
| 			</div> | ||||
| 			<Suspense key={(await searchParams).page} fallback={"loading...."}> | ||||
| 			<Suspense | ||||
| 				key={(await searchParams).page} | ||||
| 				fallback={ | ||||
| 					<DevicesTableSkeleton | ||||
| 						headers={["Device Name", "Mac Address", "Vendor", "#"]} | ||||
| 						length={10} | ||||
| 					/> | ||||
| 				} | ||||
| 			> | ||||
| 				<DevicesTable | ||||
| 					parentalControl={true} | ||||
| 					searchParams={searchParams} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user