Skip to content

Commit

Permalink
Help: update email config
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Oct 22, 2023
1 parent fcc8b3b commit fd6c1e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ios/zeus/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,10 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>mailto</string>
</array>

</dict>
</plist>
2 changes: 1 addition & 1 deletion views/Settings/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function Help(props: HelpProps) {
}}
onPress={() => {
if (item.email) {
const url = `to:${item.email}`;
const url = `mailto:${item.email}`;
Linking.canOpenURL(url).then(
(supported: boolean) => {
if (supported) {
Expand Down

0 comments on commit fd6c1e2

Please sign in to comment.