Skip to content

Commit ab1454f

Browse files
committed
fixed breaking error caused by Object.values() polyfill not being included
1 parent fe11bb8 commit ab1454f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/Stats/Personal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class PersonalStats extends Component {
3333
<div>
3434
<h3>Some stats about me</h3>
3535
<Table
36-
data={Object.values(this.state.data)}
36+
data={Object.keys(this.state.data).map(key => this.state.data[key])}
3737
/>
3838
</div>
3939
);

0 commit comments

Comments
 (0)