feat: add retry config during campaign creation

This commit is contained in:
Abhishek Kumar 2026-01-29 11:57:57 +05:30
parent db75d90535
commit 6f41e91f67
14 changed files with 1036 additions and 221 deletions

View file

@ -34,7 +34,7 @@ const AppLayout: React.FC<AppLayoutProps> = ({
return (
<SidebarProvider defaultOpen={!isWorkflowEditor}>
<div className="flex h-screen w-full">
<div className="flex min-h-screen w-full">
<AppSidebar />
<SidebarInset className="flex-1">
{/* Optional header area for specific pages */}
@ -60,7 +60,7 @@ const AppLayout: React.FC<AppLayoutProps> = ({
)}
{/* Main content area */}
<main className="flex-1 overflow-auto">
<main className="flex-1">
{children}
</main>
</SidebarInset>