Skip to content

Commit

Permalink
fix: artist about empty state alignment (#9372)
Browse files Browse the repository at this point in the history
fix: artist about empty state
  • Loading branch information
gkartalis committed Oct 4, 2023
1 parent e6caf8c commit 20e5102
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/app/Components/Artist/ArtistAbout/ArtistAboutEmpty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,18 @@ export const ArtistAboutEmpty: FC<BoxProps> = (props) => {
</Text>

<Text variant="md" textAlign="center" color="black60">
Do you represent this artist?{" "}
<Touchable
onPress={() => {
navigate("https://partners.artsy.net")
}}
>
<Text variant="md" color="black100" style={{ textDecorationLine: "underline" }}>
Become a partner.
</Text>
</Touchable>
Do you represent this artist?
</Text>
<Touchable
onPress={() => {
navigate("https://partners.artsy.net")
}}
style={{ alignSelf: "center" }}
>
<Text variant="md" color="black100" style={{ textDecorationLine: "underline" }}>
Become a partner.
</Text>
</Touchable>
</Box>
)
}

0 comments on commit 20e5102

Please sign in to comment.