diff --git a/app/utils/openLink/index.ios.js b/app/utils/openLink/index.ios.js index 056cf95ae..efa59b5f8 100644 --- a/app/utils/openLink/index.ios.js +++ b/app/utils/openLink/index.ios.js @@ -1,5 +1,7 @@ import SafariView from 'react-native-safari-view'; -const openLink = url => SafariView.show({ url, fromBottom: true, tintColor: '#292E35' }); +import { HEADER_BACK } from '../../constants/colors'; + +const openLink = url => SafariView.show({ url, fromBottom: false, tintColor: HEADER_BACK }); export default openLink;