diff --git a/frontend/tools/PlaygroundDialogContent.vue b/frontend/tools/PlaygroundDialogContent.vue index 8eb0365..bf36fc5 100644 --- a/frontend/tools/PlaygroundDialogContent.vue +++ b/frontend/tools/PlaygroundDialogContent.vue @@ -203,7 +203,7 @@ async function uploadAndShareLink() { // Upload code.py const codeBlob = new Blob([model.value.code], {type: 'text/x-python'}); - const newParams: Record = { + const newParams: Record> = { 'pg_code': await uploadFile('code.py', new Uint8Array(await codeBlob.arrayBuffer())) };