Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Nov 1, 2024
1 parent 63313b6 commit 0657e3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react-notion-x/src/icons/collection-view-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const iconMap = {
}

export function CollectionViewIcon({ type, ...rest }: CollectionViewIconProps) {
const icon = iconMap[type] as any
const icon = iconMap[type as keyof typeof iconMap]
if (!icon) {
return null
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from 'react'
import type * as React from 'react'

function SvgTypeAutoIncrementId(props: React.SVGProps<SVGSVGElement>) {
return (
Expand Down

0 comments on commit 0657e3b

Please sign in to comment.