Remove unused color variable

This commit is contained in:
Clark Winkelmann 2018-05-24 18:18:39 +02:00
parent 95b2b80d17
commit 69057183e0

View File

@ -75,14 +75,10 @@ export default class TagsPage extends Component {
{cloud.length ? (
<div className="TagCloud">
{cloud.map(tag => {
const color = tag.color();
return [
tagLabel(tag, {link: true}),
' '
];
})}
{cloud.map(tag => [
tagLabel(tag, {link: true}),
' ',
])}
</div>
) : ''}
</div>