diff --git a/invokeai/frontend/web/src/features/controlLayers/components/ControlAndIPAdapter/ControlAdapter.tsx b/invokeai/frontend/web/src/features/controlLayers/components/ControlAndIPAdapter/ControlAdapter.tsx index 986e9a6373..3a160f91d4 100644 --- a/invokeai/frontend/web/src/features/controlLayers/components/ControlAndIPAdapter/ControlAdapter.tsx +++ b/invokeai/frontend/web/src/features/controlLayers/components/ControlAndIPAdapter/ControlAdapter.tsx @@ -1,4 +1,4 @@ -import { Box, Flex, Icon, IconButton } from '@invoke-ai/ui-library'; +import { Box, Divider, Flex, Icon, IconButton } from '@invoke-ai/ui-library'; import { ControlAdapterModelCombobox } from 'features/controlLayers/components/ControlAndIPAdapter/ControlAdapterModelCombobox'; import type { ControlMode, @@ -48,7 +48,7 @@ export const ControlAdapter = memo( const [isExpanded, toggleIsExpanded] = useToggle(false); return ( - + @@ -71,7 +71,7 @@ export const ControlAdapter = memo( } /> - + {controlAdapter.type === 'controlnet' && ( {isExpanded && ( - - - - + <> + + + + + + )} );