diff --git a/src/components/OnboardingDialog.vue b/src/components/OnboardingDialog.vue
index 5c3724da..f6275f12 100644
--- a/src/components/OnboardingDialog.vue
+++ b/src/components/OnboardingDialog.vue
@@ -180,7 +180,7 @@
>
Let's go!
- See & record gratitude.
+ See & record things you've received.
diff --git a/src/db/tables/contacts.ts b/src/db/tables/contacts.ts
index 147323b9..3dfa6e1b 100644
--- a/src/db/tables/contacts.ts
+++ b/src/db/tables/contacts.ts
@@ -6,7 +6,9 @@ export type ContactMethod = {
export type Contact = {
//
- // When adding a property, consider whether it should be added when exporting & sharing contacts, eg. DataExportSection
+ // When adding a property:
+ // - Consider whether it should be added when exporting & sharing contacts, eg. DataExportSection
+ // - If it's a boolean, it should be converted from a 0/1 integer in PlatformServiceMixin._mapColumnsToValues
did: string;
contactMethods?: Array;
diff --git a/src/libs/util.ts b/src/libs/util.ts
index e9dc22cf..3696c5d7 100644
--- a/src/libs/util.ts
+++ b/src/libs/util.ts
@@ -34,6 +34,7 @@ import { PlatformServiceFactory } from "../services/PlatformServiceFactory";
import { IIdentifier } from "@veramo/core";
import { DEFAULT_ROOT_DERIVATION_PATH } from "./crypto";
+// Consolidate this with src/utils/PlatformServiceMixin._parseJsonField
function parseJsonField(value: unknown, defaultValue: T): T {
if (typeof value === "string") {
try {
diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index 93c4473d..fb099518 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -314,6 +314,7 @@ import {
} from "@/constants/notifications";
import * as Package from "../../package.json";
+// consolidate this with GiveActionClaim in src/interfaces/claims.ts
interface Claim {
claim?: Claim; // For nested claims in Verifiable Credentials
agent?: {