committed by
GitHub
parent
c5828325a2
commit
a149c52b99
@@ -14,15 +14,13 @@ export default async function DashboardPage(props: DashboardPageProps) {
|
||||
const mode = (await props.searchParams).mode ?? 'development';
|
||||
const connectivityService = createConnectivityService(mode);
|
||||
|
||||
const [
|
||||
supabaseStatus,
|
||||
supabaseAdminStatus,
|
||||
stripeStatus,
|
||||
] = await Promise.all([
|
||||
connectivityService.checkSupabaseConnectivity(),
|
||||
connectivityService.checkSupabaseAdminConnectivity(),
|
||||
connectivityService.checkStripeConnected(),
|
||||
]);
|
||||
const [supabaseStatus, supabaseAdminStatus, stripeStatus] = await Promise.all(
|
||||
[
|
||||
connectivityService.checkSupabaseConnectivity(),
|
||||
connectivityService.checkSupabaseAdminConnectivity(),
|
||||
connectivityService.checkStripeConnected(),
|
||||
],
|
||||
);
|
||||
|
||||
return (
|
||||
<Page style={'custom'}>
|
||||
|
||||
@@ -9,9 +9,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@hookform/resolvers": "^5.0.1",
|
||||
"@tanstack/react-query": "5.72.1",
|
||||
"@tanstack/react-query": "5.72.2",
|
||||
"lucide-react": "^0.487.0",
|
||||
"next": "15.2.5",
|
||||
"next": "15.3.0",
|
||||
"nodemailer": "^6.10.0",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0"
|
||||
@@ -26,7 +26,7 @@
|
||||
"@types/node": "^22.14.0",
|
||||
"@types/nodemailer": "6.4.17",
|
||||
"@types/react": "19.1.0",
|
||||
"@types/react-dom": "19.1.1",
|
||||
"@types/react-dom": "19.1.2",
|
||||
"babel-plugin-react-compiler": "19.0.0-beta-e993439-20250405",
|
||||
"pino-pretty": "^13.0.0",
|
||||
"react-hook-form": "^7.55.0",
|
||||
|
||||
Reference in New Issue
Block a user