Fixing error redesign CI

This commit is contained in:
mathysPaul
2023-09-19 17:12:49 +02:00
parent 1e504c8982
commit 073ff033f3
7 changed files with 44 additions and 223 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ export const Element = <T extends ElementProps>(props: T) => {
</InteractiveBase>
{
props.type === 'sectionDropdown' && dropdownValue &&
<View>
<View backgroundColor={'rgba(16,16,20,0.3)'}>
{
props.data.section.map((value, index) => (
<View
+1 -1
View File
@@ -30,7 +30,7 @@ const ElementList = ({ elements, style }: ElementListProps) => {
{elements.map((element, index) => (
<Box key={element.title}>
<Element {...element} />
{index < elements.length - 1 && <Divider />}
{index < elements.length - 1 && <Divider bg="transparent" thickness="2"/>}
</Box>
))}
</Column>