Skip to content

Commit

Permalink
only show default settings on main models
Browse files Browse the repository at this point in the history
  • Loading branch information
Mary Hipp authored and psychedelicious committed Mar 6, 2024
1 parent 46614ee commit b1d72d4
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,11 @@ export const ModelView = () => {
)}
</Flex>
</Box>
<Box layerStyle="second" borderRadius="base" p={3}>
<DefaultSettings />
</Box>
{modelData.type === 'main' && (
<Box layerStyle="second" borderRadius="base" p={3}>
<DefaultSettings />
</Box>
)}
</Flex>
);
};

0 comments on commit b1d72d4

Please sign in to comment.