import { useParams } from 'common' import Image from 'next/image' import { InlineLink } from '@/components/ui/InlineLink' import { BASE_PATH } from '@/lib/constants' export const DatabaseConnectionsPreview = () => { const { ref = '_' } = useParams() return (

See every session on your database in real time, spot the ones that are slow, idle in a transaction, or blocked, and terminate the one holding things up - all from{' '} Database Connections .

database-connections-preview

Enabling this preview will:

) }