diff --git a/Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift b/Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift index 4269be1a..3a0e8ad3 100644 --- a/Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift +++ b/Sources/Extensions/Array/Array+SeparatorRowBoxExtensions.swift @@ -43,8 +43,8 @@ public extension Array where Element == SeparatorRowBox { case 1: first?.set(separatorType: .full(extremeSeparatorConfiguration, extremeSeparatorConfiguration)) default: - forEach { $0.set(separatorType: .full(middleSeparatorConfiguration, middleSeparatorConfiguration)) } - first?.set(separatorType: .top(extremeSeparatorConfiguration)) + forEach { $0.set(separatorType: .bottom(middleSeparatorConfiguration))} + first?.set(separatorType: .full(extremeSeparatorConfiguration, middleSeparatorConfiguration)) last?.set(separatorType: .bottom(extremeSeparatorConfiguration)) } }