Skip to content

Commit

Permalink
Remove feedback input from AddColumn modals
Browse files Browse the repository at this point in the history
Some people write the repo name on it
  • Loading branch information
brunolemos committed Jan 20, 2020
1 parent 2c3d39b commit a35ffcf
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions packages/components/src/components/columns/ModalColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,19 @@ export const ModalColumn = React.memo((props: ModalColumnProps) => {
>
<View style={sharedStyles.flex}>{children}</View>

<View
style={[
sharedStyles.fullWidth,
sharedStyles.horizontalAndVerticallyAligned,
sharedStyles.paddingHorizontal,
]}
>
<QuickFeedbackRow />
</View>
{!(['ADD_COLUMN', 'ADD_COLUMN_DETAILS'] as Array<
ModalPayload['name']
>).includes(name) && (
<View
style={[
sharedStyles.fullWidth,
sharedStyles.horizontalAndVerticallyAligned,
sharedStyles.paddingHorizontal,
]}
>
<QuickFeedbackRow />
</View>
)}

<Spacer height={FAB.Component ? FAB.size : fabSpacing} />
</FullHeightScrollView>
Expand Down

0 comments on commit a35ffcf

Please sign in to comment.