Skip to content

Commit

Permalink
change type on @type
Browse files Browse the repository at this point in the history
  • Loading branch information
Sworzen1 committed Mar 7, 2024
1 parent 38466d0 commit 2ae4bf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const useCreateGovernanceActionForm = () => {
?.filter((link) => link.link)
.map((link) => {
// TODO: Label isnt available and harcoded Other for type
return { type: "Other", label: "Testlabel", uri: link.link };
return { "@type": "Other", label: "Testlabel", uri: link.link };
});
const body = { ...Object.fromEntries(filteredData), references };

Expand Down

0 comments on commit 2ae4bf7

Please sign in to comment.