|  |  | @ -85,18 +85,19 @@ const StyledProfileName = styled(Flex)` | 
			
		
	
		
		
			
				
					
					|  |  |  |   margin-inline-start: calc((25px + var(--margins-sm)) * -1); |  |  |  |   margin-inline-start: calc((25px + var(--margins-sm)) * -1); | 
			
		
	
		
		
			
				
					
					|  |  |  |   padding: 8px; |  |  |  |   padding: 8px; | 
			
		
	
		
		
			
				
					
					|  |  |  |   border: 1px solid var(--transparent-color); |  |  |  |   border: 1px solid var(--transparent-color); | 
			
		
	
		
		
			
				
					
					|  |  |  |   p { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |     font-size: var(--font-size-xl); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |     line-height: 1.4; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |     margin: 0; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |     padding: 0px; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |   } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |   .session-icon-button { |  |  |  |   .session-icon-button { | 
			
		
	
		
		
			
				
					
					|  |  |  |     padding: 0px; |  |  |  |     padding: 0px; | 
			
		
	
		
		
			
				
					
					|  |  |  |   } |  |  |  |   } | 
			
		
	
		
		
			
				
					
					|  |  |  | `;
 |  |  |  | `;
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | const StyledName = styled.p` | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   font-size: var(--font-size-xl); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   line-height: 1.4; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   margin: 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |   padding: 0px; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | `;
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | export const ProfileName = (props: { profileName: string; onClick: () => void }) => { |  |  |  | export const ProfileName = (props: { profileName: string; onClick: () => void }) => { | 
			
		
	
		
		
			
				
					
					|  |  |  |   const { profileName, onClick } = props; |  |  |  |   const { profileName, onClick } = props; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -109,7 +110,7 @@ export const ProfileName = (props: { profileName: string; onClick: () => void }) | 
			
		
	
		
		
			
				
					
					|  |  |  |         dataTestId="edit-profile-icon" |  |  |  |         dataTestId="edit-profile-icon" | 
			
		
	
		
		
			
				
					
					|  |  |  |       /> |  |  |  |       /> | 
			
		
	
		
		
			
				
					
					|  |  |  |       <SpacerSM /> |  |  |  |       <SpacerSM /> | 
			
		
	
		
		
			
				
					
					|  |  |  |       <p data-testid="your-profile-name">{profileName}</p> |  |  |  |       <StyledName data-testid="your-profile-name">{profileName}</StyledName> | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |     </StyledProfileName> |  |  |  |     </StyledProfileName> | 
			
		
	
		
		
			
				
					
					|  |  |  |   ); |  |  |  |   ); | 
			
		
	
		
		
			
				
					
					|  |  |  | }; |  |  |  | }; | 
			
		
	
	
		
		
			
				
					|  |  | 
 |