diff --git a/src/components/ModalsContainer/BlueprintModal/Body/index.tsx b/src/components/ModalsContainer/BlueprintModal/Body/index.tsx index b67edd619..a0c49f933 100644 --- a/src/components/ModalsContainer/BlueprintModal/Body/index.tsx +++ b/src/components/ModalsContainer/BlueprintModal/Body/index.tsx @@ -20,6 +20,10 @@ export type FormData = { } } +interface EditorWrapperProps { + hasSchema?: boolean +} + interface BodyProps { Close: () => void } @@ -139,7 +143,7 @@ export const Body = ({ Close }: BodyProps) => { {selectedSchema || isCreateNew ? ( - + ` width: 100%; max-width: 400px; background: ${colors.BG1}; border-bottom-right-radius: 16px; + border-bottom-left-radius: ${({ hasSchema }) => (hasSchema ? '9px' : '0')}; flex-grow: 1; flex-shrink: 1; min-width: 300px;