Skip to content

Commit

Permalink
💚 fix: tsc lint fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ONLY-yours committed Oct 31, 2023
1 parent 783285c commit 23c3705
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Highlight/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import { HighlightBase, HighlightProps } from './defalut';
import FullFeatureWrapper from './wrapper';

const Highlight = (
props: HighlightProps & {
containerWrapper: boolean;
},
) => {
const Highlight = (props: HighlightProps) => {
if (props?.containerWrapper) {
return <FullFeatureWrapper {...props} />;
}
Expand Down

0 comments on commit 23c3705

Please sign in to comment.