diff --git a/.env.development b/.env.development index 5e4f0da..3c6a459 100644 --- a/.env.development +++ b/.env.development @@ -1 +1 @@ -VITE_EO_SERVICES_URL=https://localhost:9000 +VITE_EO_SERVICES_URL=http://localhost:9000 diff --git a/src/App.vue b/src/App.vue index 867d814..f44a660 100644 --- a/src/App.vue +++ b/src/App.vue @@ -11,7 +11,6 @@ function onInput(e) { } async function fetchData() { - console.log('fetchingData'); contactData.value = null const res = await fetch(`${import.meta.env.VITE_EO_SERVICES_URL}/thread-tracker?threadId=${ threadId.value }`, { credentials: "include" // fetch won't send cookies unless you set credentials @@ -30,11 +29,10 @@ async function fetchData() {
{{ handledBy.username }}
+{{ handledBy.username }}
+unknown
\ No newline at end of file diff --git a/src/components/OutcomeList.vue b/src/components/OutcomeList.vue index e176e19..382ff5b 100644 --- a/src/components/OutcomeList.vue +++ b/src/components/OutcomeList.vue @@ -4,5 +4,7 @@ defineProps(["outcomes"]); -