diff --git a/src/components/ActivityListItem.vue b/src/components/ActivityListItem.vue index 37b84a2..4163ee3 100644 --- a/src/components/ActivityListItem.vue +++ b/src/components/ActivityListItem.vue @@ -13,7 +13,10 @@
- +
- - + +
-
{{ record.giver.displayName }}
+
+ {{ record.giver.displayName }} +
- @@ -65,8 +89,15 @@
-
- + -
+
- + {{ formattedTimestamp }}
@@ -87,37 +123,37 @@ \ No newline at end of file + diff --git a/src/types/index.ts b/src/types/index.ts index fcb53b1..4eb29df 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -1,6 +1,6 @@ export interface GiveRecordWithContactInfo { jwtId: string; - fullClaim: any; // Replace with proper type + fullClaim: unknown; // Replace with proper type giver: { known: boolean; displayName: string; @@ -17,4 +17,4 @@ export interface GiveRecordWithContactInfo { subDescription?: string; image?: string; timestamp: string; -} \ No newline at end of file +}