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 @@
+
+
+
+
+
+
+
+ Cancel
+
+ Save
+
+
+
+
+
+
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
- }
- }
}
}
}