Skip to content

Commit

Permalink
feat: Deserialize drafted prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Azurewarth0920 committed Feb 4, 2024
1 parent 54e8493 commit 9152a9a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ function submitDrafting() {
nodeId,
state: {
newKey: draftingNewProp.value.key,
type: typeof draftingNewProp.value.value,
value: draftingNewProp.value.value,
type: typeof toSubmit(draftingNewProp.value.value),
value: toSubmit(draftingNewProp.value.value),
},
} satisfies InspectorStateEditorPayload)
resetDrafting()
Expand Down

0 comments on commit 9152a9a

Please sign in to comment.