diff --git a/app/utils/openLink/index.ios.js b/app/utils/openLink/index.ios.js index 056cf95ae9f5d7819dc55fe6e2e1e74db5c2d12d..efa59b5f8dd9ef51d9af54b3d878703c9a4f63a2 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;