import { useParams } from 'common' import Link from 'next/link' import { Button } from 'ui' import { Admonition } from 'ui-patterns' const PublicSchemaNotEnabledAlert = () => { const { ref: projectRef } = useParams() return (

The public schema for this project is not exposed

You will not be able to query tables and views in the public schema via briven-js or HTTP clients. Configure this behavior in your project's Data API settings.

) } export default PublicSchemaNotEnabledAlert