From bc7ed52662d6a66481fd06774416160a73867805 Mon Sep 17 00:00:00 2001 From: Ategon <benjamin@barbeau.net> Date: Sat, 18 Jan 2025 12:50:39 -0500 Subject: [PATCH] Fix PostType --- src/types/PostType.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/PostType.ts b/src/types/PostType.ts index 6aaaecf..81a5ab2 100644 --- a/src/types/PostType.ts +++ b/src/types/PostType.ts @@ -8,5 +8,5 @@ export interface PostType { name: string; }; createdAt: Date; - likers: []; + likes: []; }