Skip to content

Commit

Permalink
fix (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreVasseur authored Aug 22, 2024
1 parent 61f13ee commit 5d1b364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/components/buttons/see.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { D } = createAllDictionary({
type SeeButtonTypes = {
onClick: (e: any) => void;
};
export const SeeButton = ({ onClick, ...props }: Readonly<SeeButtonTypes>) => {
export const SeeButton = (props: Readonly<SeeButtonTypes>) => {
return (
<button
{...props}
Expand Down

0 comments on commit 5d1b364

Please sign in to comment.