Commit be4da5df authored by Luke Schoen's avatar Luke Schoen
Browse files

review-fix: Remove parenths from onClick

parent 479f2b54
Pipeline #28681 passed with stage
in 2 minutes and 18 seconds
...@@ -16,7 +16,7 @@ export const MenuPopup = ({ menuItems, ...otherProps }) => ( ...@@ -16,7 +16,7 @@ export const MenuPopup = ({ menuItems, ...otherProps }) => (
<div <div
className='popup-screen_item' className='popup-screen_item'
key={item.name} key={item.name}
onClick={() => item.onClick()} onClick={() => item.onClick}
> >
{item.name} {item.name}
</div> </div>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment