Skip to content

Commit

Permalink
Made thread view page color design consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Webster committed Jan 12, 2024
1 parent 14205b5 commit 8e20769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion screens/ThreadViewPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ const ThreadViewPage = ({navigation, route}) => {
return(
<>
<StatusBar style={colors.StatusBarColor}/>
<TopNavBar screenName={(postReducer.posts.length > 0 ? (postReducer.posts[0].creatorDisplayName || postReducer.posts[0].creatorName) : 'Finding') + "'s thread"}/>
<TopNavBar extraStyles={{backgroundColor: dark ? colors.darkest : colors.greyish}} screenName={(postReducer.posts.length > 0 ? (postReducer.posts[0].creatorDisplayName || postReducer.posts[0].creatorName) : 'Finding') + "'s thread"}/>
<KeyboardAvoidingScrollView>
<StyledContainer style={{width: '100%', backgroundColor: dark ? colors.darkest : colors.greyish, alignItems: 'center', paddingBottom: 2, paddingTop: 0}}>
<TouchableOpacity onPress={navigateToCategoryViewPage}>
Expand Down

0 comments on commit 8e20769

Please sign in to comment.