summaryrefslogtreecommitdiffhomepage
path: root/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'app/components')
-rw-r--r--app/components/Support.js6
-rw-r--r--app/components/SupportStyles.js3
2 files changed, 7 insertions, 2 deletions
diff --git a/app/components/Support.js b/app/components/Support.js
index d57216e316..34fa0e0e9e 100644
--- a/app/components/Support.js
+++ b/app/components/Support.js
@@ -312,8 +312,10 @@ export default class Support extends Component<SupportProps, SupportState> {
</View>
</View>
<View style={styles.support__footer}>
- <AppButton.BlueButton onPress={() => this.setState({ sendState: 'INITIAL' })}>
- Edit message
+ <AppButton.BlueButton
+ style={styles.edit_message_button}
+ onPress={() => this.setState({ sendState: 'INITIAL' })}>
+ {'Edit message'}
</AppButton.BlueButton>
<AppButton.GreenButton onPress={this.onSend} testName="support__send_logs">
Try again
diff --git a/app/components/SupportStyles.js b/app/components/SupportStyles.js
index bc23567d9d..bbc3895b6a 100644
--- a/app/components/SupportStyles.js
+++ b/app/components/SupportStyles.js
@@ -59,6 +59,9 @@ export default Object.assign(
view_logs_button: {
marginBottom: 16,
},
+ edit_message_button: {
+ marginBottom: 16,
+ },
}),
createTextStyles({
support__form_email: {