fix: error when description is null (#536)
This commit is contained in:
		
							parent
							
								
									5c1d46aa25
								
							
						
					
					
						commit
						8e9703545a
					
				
					 1 changed files with 10 additions and 8 deletions
				
			
		|  | @ -228,15 +228,17 @@ const EventTypesPage = (props: InferGetServerSidePropsType<typeof getServerSideP | |||
|                               /> | ||||
|                               <p>1-on-1</p> | ||||
|                             </div> | ||||
|                             <div className="flex items-center text-sm text-neutral-500"> | ||||
|                               <InformationCircleIcon | ||||
|                                 className="flex-shrink-0 mr-1.5 w-4 h-4 text-neutral-400" | ||||
|                                 aria-hidden="true" | ||||
|                               /> | ||||
|                               <div className="truncate max-w-32 sm:max-w-full"> | ||||
|                                 {type.description.substring(0, 100)} | ||||
|                             {type.description && ( | ||||
|                               <div className="flex items-center text-sm text-neutral-500"> | ||||
|                                 <InformationCircleIcon | ||||
|                                   className="flex-shrink-0 mr-1.5 w-4 h-4 text-neutral-400" | ||||
|                                   aria-hidden="true" | ||||
|                                 /> | ||||
|                                 <div className="truncate max-w-32 sm:max-w-full"> | ||||
|                                   {type.description.substring(0, 100)} | ||||
|                                 </div> | ||||
|                               </div> | ||||
|                             </div> | ||||
|                             )} | ||||
|                           </div> | ||||
|                         </span> | ||||
|                       </a> | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Femi Odugbesan
						Femi Odugbesan