fix(ui): do not show default settings for refiner models

This commit is contained in:
psychedelicious 2024-03-08 20:25:45 +11:00 committed by Brandon
parent fd457955bc
commit a3570901f7

View File

@ -60,7 +60,7 @@ export const ModelView = () => {
)}
</Flex>
</Box>
{data.type === 'main' && (
{data.type === 'main' && data.base !== 'sdxl-refiner' && (
<Box layerStyle="second" borderRadius="base" p={4}>
<MainModelDefaultSettings />
</Box>