Skip to content

Commit 3d65f34

Browse files
committed
fix linting
1 parent dc8fdb0 commit 3d65f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/remix-ui/clipboard/src/lib/copy-to-clipboard/copy-to-clipboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface ICopyToClipboard {
1818
classList?: string
1919
}
2020
export const CopyToClipboard = (props: ICopyToClipboard) => {
21-
const { tip = 'Copy', icon = 'fa-copy', classList = ' ml-1 p-2', direction = 'right', getContent, children, callback, ...otherProps } = props
21+
const { tip = 'Copy', icon = 'fa-copy', classList = ' ml-1 p-2', direction = 'right', getContent, children, callback, ...otherProps } = props
2222
let { content } = props
2323
const [message, setMessage] = useState(tip)
2424

0 commit comments

Comments
 (0)