client: remove unused param in post-table

This commit is contained in:
Max Leiter 2022-04-13 12:41:59 -07:00
parent 7ce6acf5fe
commit 3d747f41cc
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA
2 changed files with 3 additions and 4 deletions

View file

@ -102,7 +102,7 @@ const PostTable = () => {
dataIndex: "",
key: "actions",
width: 50,
render(post: any) {
render() {
return (
<Popover
content={

View file

@ -18,9 +18,8 @@ class MyDocument extends Document {
<>
{initialProps.styles}
{styles}
</>
) as // TODO: Investigate typescript
any
</> // TODO: Investigate typescript
) as any
}
}