Fix syntax error

This commit is contained in:
iam54r1n4 2023-01-20 15:17:08 -08:00
parent b96ba2e0d6
commit af34cd7eb2

View file

@ -78,7 +78,7 @@ const ProfilePage = () => {
// init selected array
const { selected = [] } = profile;
const selectedMap = Object.fromEntries(
h selected.map((each) => [each.name!, each.now!])
selected.map((each) => [each.name!, each.now!])
);
let hasChange = false;