Skip to content

Commit 58be0eb

Browse files
committed
Lint
1 parent 9caa1a6 commit 58be0eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/extension-starter/src/components/sample-hoc.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import React from 'react'
1010
// Define a type for the HOC props
1111
type SampleHOCProps = React.ComponentPropsWithoutRef<any>
1212

13-
// Define the HOC function
13+
// Define the HOC function
1414
const sampleHOC = <P extends object>(WrappedComponent: React.ComponentType<P>) => {
1515
const SampleHOC: React.FC<P> = (props: SampleHOCProps) => {
1616
return (

0 commit comments

Comments
 (0)