1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00

fix: remove semicolon from component (#480)

This commit is contained in:
Youssef Khedher 2021-10-29 20:14:38 +01:00 committed by GitHub
parent 0ee2c02cba
commit 3ba502a3c7

View File

@ -11,7 +11,7 @@ const FeatureLog = () => {
return ( return (
<div className={styles.container}> <div className={styles.container}>
<HistoryComponent toggleName={feature.name} />; <HistoryComponent toggleName={feature.name} />
</div> </div>
); );
}; };