1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +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 (
<div className={styles.container}>
<HistoryComponent toggleName={feature.name} />;
<HistoryComponent toggleName={feature.name} />
</div>
);
};