Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amcaplan committed Jan 9, 2025
1 parent 2d18f38 commit 9373962
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/src/cli/services/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class AppInfo {
)
}
})
.filter((section: CustomSection | undefined) => section !== undefined) as CustomSection[]
.filter((section: CustomSection | undefined) => section !== undefined)
}

extensionSubSection(extension: ExtensionInstance): InlineToken[][] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface TabularDataProps {
const TabularData: FunctionComponent<TabularDataProps> = ({tabularData: data, firstColumnSubdued}) => {
const columnWidths: number[] = data.reduce<number[]>((acc, row) => {
row.forEach((cell, index) => {
acc[index] = Math.max(acc[index] ?? 0, unstyled((tokenItemToString(cell))).length)
acc[index] = Math.max(acc[index] ?? 0, unstyled(tokenItemToString(cell)).length)
})
return acc
}, [])
Expand Down

0 comments on commit 9373962

Please sign in to comment.