Browse Source

Remove useless comma (#4711)

Found an additional comma typo when I implemented this example with typescript.
main
Dongho 3 years ago
committed by GitHub
parent
commit
d2da1a55d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      beta/src/pages/learn/choosing-the-state-structure.md

4
beta/src/pages/learn/choosing-the-state-structure.md

@ -1050,7 +1050,7 @@ export const initialTravelPlan = {
35: {
id: 35,
title: 'Oceania',
childIds: [36, 37, 38, 39, 40, 41,, 42],
childIds: [36, 37, 38, 39, 40, 41, 42],
},
36: {
id: 36,
@ -2849,4 +2849,4 @@ Keep in mind that you [should not mutate objects in state](/learn/updating-objec
</Solution>
</Challenges>
</Challenges>

Loading…
Cancel
Save