Skip to content

Commit

Permalink
Remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
lederer committed Sep 26, 2024
1 parent 5cd7b1e commit 8d0d4e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/src/components/Examples.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function Examples({ isHookMode, ...props }) {
return (
<div sx={sx.examples} {...props}>
<h3 sx={sx.heading}>{title}</h3>
{EXAMPLES.map(({ name, desc, hook, component, noInline }, i) => {
{EXAMPLES.map(({ name, desc, hook, component, noInline }) => {
const code = isHookMode ? hook : component;
return code ? (
<Example
Expand Down
2 changes: 1 addition & 1 deletion example/src/components/Ticket.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const sx = {
},
};

const Ticket = forwardRef(({ active, fontSize, ...props }, ref) => {
const Ticket = forwardRef(({ active, ...props }, ref) => {
return (
<NavLink
ref={ref}
Expand Down

0 comments on commit 8d0d4e6

Please sign in to comment.