File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
apps/dashboard/app/(main)/observability/database Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 11'use client' ;
22
3- import { DatabaseIcon , TrendDownIcon } from '@phosphor-icons/react' ;
3+ import { DatabaseIcon , InfoIcon , TrendDownIcon } from '@phosphor-icons/react' ;
44import { Suspense , useCallback , useRef , useState } from 'react' ;
55import { toast } from 'sonner' ;
6+ import { Alert , AlertDescription } from '@/components/ui/alert' ;
67import { Card , CardContent } from '@/components/ui/card' ;
78import { useOrganizations } from '@/hooks/use-organizations' ;
89import { trpc } from '@/lib/trpc' ;
@@ -216,6 +217,17 @@ export default function DatabasePage() {
216217 title = "Database Monitoring"
217218 />
218219
220+ < Alert className = "rounded border-amber-200 bg-amber-50 dark:border-amber-800 dark:bg-amber-950" >
221+ < InfoIcon className = "h-4 w-4 text-amber-600 dark:text-amber-400" />
222+ < AlertDescription className = "text-amber-800 dark:text-amber-200" >
223+ < strong > Alpha Release - Early Access</ strong >
224+ < br />
225+ Database monitoring is currently in alpha and not intended for
226+ production use. This is an early access feature for testing and
227+ feedback purposes only.
228+ </ AlertDescription >
229+ </ Alert >
230+
219231 < Suspense fallback = { < DatabaseConnectionsSkeleton /> } >
220232 < ConnectionsList
221233 connections = { connections }
You can’t perform that action at this time.
0 commit comments