Skip to content

Commit

Permalink
Fixes bug introduced via Eigen/Emission rebase (#3032)
Browse files Browse the repository at this point in the history
Fixes bug introduced via Eigen/Emission rebase
  • Loading branch information
artsy-peril[bot] authored Feb 24, 2020
2 parents f693397 + 31b7c3b commit 3d4419b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions emission/src/lib/Scenes/Collection/Collection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CollectionArtworksFragmentContainer as CollectionArtworks } from "lib/S
import { CollectionHeaderContainer as CollectionHeader } from "lib/Scenes/Collection/Screens/CollectionHeader"
import { Schema, screenTrack } from "lib/utils/track"
import React, { Component } from "react"
import { FlatList, NativeModules, View } from "react-native"
import { FlatList, NativeModules, TouchableWithoutFeedback, View } from "react-native"
import { createFragmentContainer, graphql } from "react-relay"
import styled from "styled-components/native"
import { CollectionFeaturedArtistsContainer as CollectionFeaturedArtists } from "./Components/FeaturedArtists"
Expand Down Expand Up @@ -142,9 +142,14 @@ export class Collection extends Component<CollectionProps, CollectionState> {
/>
{isArtworkGridVisible && isArtworkFilterEnabled && (
<FilterArtworkButtonContainer>
<FilterArtworkButton variant="primaryBlack" onPress={() => this.handleFilterArtworksModal()}>
Filter
</FilterArtworkButton>
<TouchableWithoutFeedback onPress={this.handleFilterArtworksModal.bind(this)}>
<FilterArtworkButton px="2">
<FilterIcon fill="white100" />
<Sans size="3t" pl="1" py="1" color="white100" weight="medium">
Filter
</Sans>
</FilterArtworkButton>
</TouchableWithoutFeedback>
</FilterArtworkButtonContainer>
)}
</View>
Expand Down

0 comments on commit 3d4419b

Please sign in to comment.