Commit b6f081b2 authored by Chunchi Che's avatar Chunchi Che

fix small

parent 456e3b98
Pipeline #28963 passed with stages
in 11 minutes and 53 seconds
......@@ -34,8 +34,8 @@ export const ActionHistory: React.FC = () => {
>
<ScrollableArea className={styles.container} maxHeight="var(--height)">
<div className={styles.timeline}>
{historys.map((history) => (
<HistoryItem {...(history as History)} />
{historys.map((history, idx) => (
<HistoryItem key={idx} {...(history as History)} />
))}
</div>
</ScrollableArea>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment