From 1880b2c13fe450c3b9bdf4c67a97c15acfc77f73 Mon Sep 17 00:00:00 2001 From: Corey Phillips Date: Tue, 24 Mar 2020 23:58:00 -0400 Subject: [PATCH] Added condition to prevent the donate link from displaying on Android in Settings. --- src/components/Settings.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Settings.js b/src/components/Settings.js index a846b97..349bd5e 100644 --- a/src/components/Settings.js +++ b/src/components/Settings.js @@ -1134,14 +1134,15 @@ class Settings extends PureComponent { valueStyle={{ fontSize: 14, textAlign: "center", fontWeight: "bold" }} col2Style={{ flex: 1.2, alignItems: "center", justifyContent: "center", textAlign: "center" }} /> - + + {Platform.OS === "ios" && } onPress={this.donate} valueStyle={{ fontSize: 16, textAlign: "center", fontWeight: "bold" }} col2Style={{ flex: 1.2, alignItems: "center", justifyContent: "center", textAlign: "center" }} - /> + />}