Skip to content
Snippets Groups Projects
Commit 219fb317 authored by Yamagishi Kazutoshi's avatar Yamagishi Kazutoshi Committed by Eugen
Browse files

Remove unnecessary variable in ColumnLink component (#2341)

Fix bug in cca41ea5 .
parent 66fd8e78
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import { Link } from 'react-router';
const ColumnLink = ({ icon, text, to, href, method, hideOnMobile }) => {
if (href) {
return (
<a href={href} style={outerStyle} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`} data-method={method}>
<a href={href} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`} data-method={method}>
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
{text}
</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment