From f5bdcef23bf2a14aa4aa1a02b634d5b1420331cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Steinhagen?= Date: Wed, 28 Jan 2026 12:40:53 +0200 Subject: [PATCH] fix: reviewers comments --- components/receive/SettingsDialog.vue | 58 +++++++++++++++++++++++++++ env.example | 12 ++++++ lib/ingestion/graphql/mutations.ts | 15 ------- 3 files changed, 70 insertions(+), 15 deletions(-) create mode 100644 components/receive/SettingsDialog.vue create mode 100644 env.example diff --git a/components/receive/SettingsDialog.vue b/components/receive/SettingsDialog.vue new file mode 100644 index 0000000..6e70a33 --- /dev/null +++ b/components/receive/SettingsDialog.vue @@ -0,0 +1,58 @@ + + + diff --git a/env.example b/env.example new file mode 100644 index 0000000..185f620 --- /dev/null +++ b/env.example @@ -0,0 +1,12 @@ +HOST=127.0.0.1 +PORT=8082 + +NUXT_PUBLIC_MIXPANEL_TOKEN_ID=acd87c5a50b56df91a795e999812a3a4 +NUXT_PUBLIC_MIXPANEL_API_HOST=https://analytics.speckle.systems + +SPECKLE_ACCOUNT_ID=undefined +SPECKLE_TOKEN=undefined +SPECKLE_USER_ID=undefined +SPECKLE_URL=undefined +SPECKLE_SAMPLE_PROJECT_ID=undefined +SPECKLE_SAMPLE_MODEL_ID=undefined \ No newline at end of file diff --git a/lib/ingestion/graphql/mutations.ts b/lib/ingestion/graphql/mutations.ts index f0dd459..8ae3a08 100644 --- a/lib/ingestion/graphql/mutations.ts +++ b/lib/ingestion/graphql/mutations.ts @@ -67,14 +67,6 @@ export const failModelIngestionWithError = graphql(` modelIngestionMutations { failWithError(input: $input) { id - statusData { - __typename - ... on ModelIngestionFailedStatus { - status - errorReason - errorStacktrace - } - } } } } @@ -87,13 +79,6 @@ export const failModelIngestionWithCancel = graphql(` modelIngestionMutations { failWithCancel(input: $input) { id - statusData { - __typename - ... on ModelIngestionCancelledStatus { - status - cancellationMessage - } - } } } }