diff --git a/apps/studio/components/ui/AlertError.tsx b/apps/studio/components/ui/AlertError.tsx index 74c6dc7c16d50..0ec74d9448780 100644 --- a/apps/studio/components/ui/AlertError.tsx +++ b/apps/studio/components/ui/AlertError.tsx @@ -11,7 +11,7 @@ export interface AlertErrorProps { projectRef?: string subject?: string error?: { message: string } | null - layout?: 'vertical' | 'horizontal' + layout?: 'vertical' | 'horizontal' | 'responsive' className?: string showIcon?: boolean showInstructions?: boolean @@ -51,7 +51,7 @@ export const AlertError = ({ error, className, showIcon = true, - layout = 'horizontal', + layout = 'responsive', showInstructions = true, showErrorPrefix = true, children,