diff --git a/src/page/search/view.js b/src/page/search/view.js
index 1f5a8f4..f1260d5 100644
--- a/src/page/search/view.js
+++ b/src/page/search/view.js
@@ -142,7 +142,7 @@ class SearchPage extends React.PureComponent {
{showTagResult && (
this.handleTagResultPressed(query)}>
- #{query}
+ #{query.toLowerCase()}
Explore content for this tag
)}
@@ -152,7 +152,7 @@ class SearchPage extends React.PureComponent {
handleTagResultPressed = tag => {
const { navigation } = this.props;
- navigation.navigate({ routeName: Constants.DRAWER_ROUTE_TAG, key: `tagPage`, params: { tag } });
+ navigation.navigate({ routeName: Constants.DRAWER_ROUTE_TAG, key: `tagPage`, params: { tag: tag.toLowerCase() } });
};
render() {