Skip to content

Commit d26b8f3

Browse files
committed
Fix cost display component
1 parent d2b2f81 commit d26b8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CostDisplay/CostDisplay.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styles from './CostDisplay.module.css';
44

55
const CostDisplay = ({ cost }) => (
66
<div className={styles.CostDisplay} data-testid="CostDisplay">
7-
Cost: <div id="cost-value">{cost}</div>
7+
Cost: <span id="cost-value">{cost}</span>
88
</div>
99
);
1010

0 commit comments

Comments
 (0)