Data: no longer duplicated in meta for downloaded attestations (#188)

* fix: data no longer duplicated in meta in downloads

* fix: cleanup
This commit is contained in:
Tanner
2025-06-10 05:24:38 -07:00
committed by GitHub
parent 008cb10b30
commit 9567590e47

View File

@@ -133,11 +133,6 @@ export const onCreatePresentationRequest = async (request: any) => {
id,
proof: {
...json,
meta: {
...json.meta,
notaryUrl,
websocketProxyUrl,
},
},
},
});
@@ -447,11 +442,6 @@ async function createProof(options: {
const json = await presentation.json();
return {
...json,
meta: {
...json,
notaryUrl: notaryUrl,
websocketProxyUrl: websocketProxyUrl,
},
};
}