From aa098273174e4ad2b59b57664bd1b102bf22d359 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Fri, 28 Feb 2025 21:00:03 +0800 Subject: [PATCH] Type fixes --- src/components/ActivityListItem.vue | 102 +++++++++++++++++++--------- src/types/index.ts | 4 +- 2 files changed, 72 insertions(+), 34 deletions(-) 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 @@
-
- + -
+
- + {{ 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 +}