diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index cb77ec3..cc88515 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -164,6 +164,12 @@
>
Ideas...
+
@@ -174,6 +180,7 @@
showGivenToUser="true"
/>
+
@@ -257,6 +264,7 @@ import GiftedPrompts from "@/components/GiftedPrompts.vue";
import InfiniteScroll from "@/components/InfiniteScroll.vue";
import QuickNav from "@/components/QuickNav.vue";
import TopMessage from "@/components/TopMessage.vue";
+import OnboardingDialog from "@/components/OnboardingDialog.vue";
import { NotificationIface } from "@/constants/app";
import { db, accountsDB } from "@/db/index";
import { Account } from "@/db/tables/accounts";
@@ -291,6 +299,7 @@ interface GiveRecordWithContactInfo extends GiveServerRecord {
EntityIcon,
InfiniteScroll,
TopMessage,
+ OnboardingDialog,
},
})
export default class HomeView extends Vue {
@@ -578,5 +587,9 @@ export default class HomeView extends Vue {
openGiftedPrompts() {
(this.$refs.giftedPrompts as GiftedPrompts).open();
}
+
+ startOnboardingDialog() {
+ /* Start the onboarding dialog here. */
+ }
}