Add exact attribute to WrappedRoute for community timeline (#7572)
* Add extra attribute to WrappedRoute for community timeline * fix
This commit is contained in:
		
							parent
							
								
									292c987522
								
							
						
					
					
						commit
						46061dc041
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -141,8 +141,8 @@ class SwitchingColumnsArea extends React.PureComponent {
 | 
			
		|||
          <WrappedRoute path='/keyboard-shortcuts' component={KeyboardShortcuts} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/home' component={HomeTimeline} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public' exact component={PublicTimeline} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public/media' extract component={PublicTimeline} content={children} componentParams={{ onlyMedia: true }} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public/local' component={CommunityTimeline} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public/media' component={PublicTimeline} content={children} componentParams={{ onlyMedia: true }} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public/local' exact component={CommunityTimeline} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/public/local/media' component={CommunityTimeline} content={children} componentParams={{ onlyMedia: true }} />
 | 
			
		||||
          <WrappedRoute path='/timelines/direct' component={DirectTimeline} content={children} />
 | 
			
		||||
          <WrappedRoute path='/timelines/tag/:id' component={HashtagTimeline} content={children} />
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue