Skip to content

Commit cfcb1df

Browse files
author
Zaydek Michels-Gualtieri
committed
Removed <Transition> for <MetaNavItem>
1 parent 0a3b5c6 commit cfcb1df

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Nav/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,13 @@ const DropDown = () => {
131131
}
132132

133133
const MetaNavItem = ({ className, children }) => (
134-
<Meta.Transition duration={75}>
135-
{React.cloneElement(children, {
136-
className: trimSpaces(`${children.props.className}
137-
px-3 flex flex-row items-center text-gray-900 hover:text-gray-500
138-
${className}`),
139-
})}
140-
</Meta.Transition>
134+
// <Meta.Transition duration={75}>
135+
React.cloneElement(children, {
136+
className: trimSpaces(`${children.props.className}
137+
px-3 flex flex-row items-center text-gray-900 hover:text-gray-500
138+
${className}`),
139+
})
140+
// </Meta.Transition>
141141
)
142142

143143
const Nav = () => (

0 commit comments

Comments
 (0)