Browse Source

fix(issues): Adjust issues stream group line height (#49643)

removed some unused junk with it
Scott Cooper 1 year ago
parent
commit
e117004e0a
1 changed files with 2 additions and 5 deletions
  1. 2 5
      static/app/components/eventOrGroupHeader.tsx

+ 2 - 5
static/app/components/eventOrGroupHeader.tsx

@@ -148,9 +148,7 @@ function EventOrGroupHeader({
 
   return (
     <div className={className} data-test-id="event-issue-header">
-      <Title size={size} hasGroupingTreeUI={hasGroupingTreeUI}>
-        {getTitle()}
-      </Title>
+      <Title>{getTitle()}</Title>
       {eventLocation && <Location size={size}>{eventLocation}</Location>}
       {message && (
         <StyledTagAndMessageWrapper size={size}>
@@ -176,8 +174,7 @@ const getMargin = ({size}: {size: Size}) => {
   return 'margin: 0 0 5px';
 };
 
-const Title = styled('div')<{hasGroupingTreeUI: boolean; size: Size}>`
-  line-height: 1;
+const Title = styled('div')`
   margin-bottom: ${space(0.25)};
   & em {
     font-size: ${p => p.theme.fontSizeMedium};