From 3d747f41cc17ef382923ce5937b87e7efa7eae0c Mon Sep 17 00:00:00 2001 From: Max Leiter Date: Wed, 13 Apr 2022 12:41:59 -0700 Subject: [PATCH] client: remove unused param in post-table --- client/components/admin/post-table.tsx | 2 +- client/pages/_document.tsx | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/client/components/admin/post-table.tsx b/client/components/admin/post-table.tsx index 3019328c..bb9539aa 100644 --- a/client/components/admin/post-table.tsx +++ b/client/components/admin/post-table.tsx @@ -102,7 +102,7 @@ const PostTable = () => { dataIndex: "", key: "actions", width: 50, - render(post: any) { + render() { return ( {initialProps.styles} {styles} - - ) as // TODO: Investigate typescript - any + // TODO: Investigate typescript + ) as any } }