File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
packages/components/src/components/columns Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -131,15 +131,19 @@ export const ModalColumn = React.memo((props: ModalColumnProps) => {
131131 >
132132 < View style = { sharedStyles . flex } > { children } </ View >
133133
134- < View
135- style = { [
136- sharedStyles . fullWidth ,
137- sharedStyles . horizontalAndVerticallyAligned ,
138- sharedStyles . paddingHorizontal ,
139- ] }
140- >
141- < QuickFeedbackRow />
142- </ View >
134+ { ! ( [ 'ADD_COLUMN' , 'ADD_COLUMN_DETAILS' ] as Array <
135+ ModalPayload [ 'name' ]
136+ > ) . includes ( name ) && (
137+ < View
138+ style = { [
139+ sharedStyles . fullWidth ,
140+ sharedStyles . horizontalAndVerticallyAligned ,
141+ sharedStyles . paddingHorizontal ,
142+ ] }
143+ >
144+ < QuickFeedbackRow />
145+ </ View >
146+ ) }
143147
144148 < Spacer height = { FAB . Component ? FAB . size : fabSpacing } />
145149 </ FullHeightScrollView >
You can’t perform that action at this time.
0 commit comments