Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
devleejb committed Feb 1, 2024
1 parent 2e63e7a commit 9a818b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ function YorkieIntelligenceFeatureList(props: YorkieIntelligenceFeatureListProps
/>
<MenuList>
{filteredFeatureInfoList.map((featureInfo) => (
<MenuItem key={featureInfo.feature} onClick={() => onSelectFeature(featureInfo.feature, featureInfo.title)}>
<MenuItem
key={featureInfo.feature}
onClick={() => onSelectFeature(featureInfo.feature, featureInfo.title)}
>
<ListItemIcon>{featureInfo.icon}</ListItemIcon>
<ListItemText>{featureInfo.title}</ListItemText>
</MenuItem>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/constants/intelligence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const INTELLIGENCE_FOOTER_ID = "yorkie-intelligence-footer";
export enum IntelligenceFeature {
GITHUB_ISSUE = "github-issue",
GITHUB_PR = "github-pr",
}
}
1 change: 0 additions & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ body {
-webkit-user-modify: read-only;
white-space: initial !important;
}

0 comments on commit 9a818b5

Please sign in to comment.