Skip to content

Commit

Permalink
Meta data key issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shyambhongle committed Dec 26, 2024
1 parent bcaebf8 commit 404fd76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/screens/InterventionPreviewView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ const InterventionPreviewView = () => {
const publicKey = formatString(el.key)
updatedMetadata.public = {
...updatedMetadata.public, [publicKey]: {
"key": "more-info",
"originalKey": "more-info",
"key": publicKey,
"originalKey": publicKey,
"value": el.value,
"label": "More Info",
"label": el.key,
"type": "input",
"unit": "",
"visibility": "public",
Expand Down

0 comments on commit 404fd76

Please sign in to comment.