diff --git a/src/App.vue b/src/App.vue
index c092638..2adc45b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,6 +2,6 @@
Home
About
Reference ID Tracker
- Interaction Sankey
+ Interactions Flow
diff --git a/src/router/index.js b/src/router/index.js
index c9bcf89..38f5db3 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -16,7 +16,7 @@ const routes = [
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
- import(/* webpackChunkName: "about" */ "../views/AbouView.vue"),
+ import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
},
{
path: "/referenceId",
diff --git a/src/views/SearchByReferenceView.vue b/src/views/SearchByReferenceView.vue
index f6742b3..bee6030 100644
--- a/src/views/SearchByReferenceView.vue
+++ b/src/views/SearchByReferenceView.vue
@@ -3,7 +3,7 @@ import { ref } from "vue";
import ContactTable from "../components/ContactTable.vue";
import ContactsSummary from "../components/ContactsSummary.vue";
-import Error from "../components/Error.vue";
+import ErrorMessage from "../components/ErrorMessage.vue";
const referenceId = ref("");
const contactData = ref(null);
@@ -63,7 +63,7 @@ function fetchData() {
v-if="contactData"
:table-data="contactData.data.findContactsCompletedBetween.edges"
/>
-
+