Merge pull request #9 from Eric-w-H/patch-1

Update VH levels
This commit is contained in:
Joshua Seigler 2019-08-01 19:22:33 +00:00 committed by GitHub
commit f5a398df49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,3 @@
export function getLevel (state) {
return state.invested.reduce((total, current) => total + current, 3);
return state.invested.reduce((total, current) => total + current, 2);
};