diff --git a/components/header/back-button.js b/components/header/back-button.js
index e4437e12b2c7e33273e04d12d65b037fecda4595..db5e3e10fc736f0c99579309b8a84386b6b1efc7 100644
--- a/components/header/back-button.js
+++ b/components/header/back-button.js
@@ -1,12 +1,10 @@
 import React from 'react'
 import {
   Text,
-  TouchableOpacity,
   View
 } from 'react-native'
 import styles from '../../styles'
 import NavigationArrow from './navigation-arrow'
-import Icon from 'react-native-vector-icons/Entypo'
 
 export default function BackButtonHeader(props) {
   return (
@@ -21,11 +19,6 @@ export default function BackButtonHeader(props) {
           {props.title}
         </Text>
       </View>
-      <TouchableOpacity>
-        <Icon
-          name={'chevron-thin-right'}
-        />
-      </TouchableOpacity>
     </View>
   )
 }