Skip to content

Commit

Permalink
WIP(ui-i18n): fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
balzss committed Oct 19, 2023
1 parent 2b7e128 commit 8c5a8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-i18n/src/bidirectional.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const bidirectional: BidirectionalType = decorator((ComposedComponent) => {
}

const BidirectionalForwardingRef: ForwardRefExoticComponent<
PropsWithoutRef<Props> & RefAttributes<any>
PropsWithoutRef<Record<string, unknown>> & RefAttributes<any>
> & {
originalType?: React.ComponentClass
} = forwardRef<any, BidirectionalProps>((props, ref) => (
Expand Down

0 comments on commit 8c5a8ef

Please sign in to comment.