client: remove unused param in post-table
This commit is contained in:
parent
7ce6acf5fe
commit
3d747f41cc
2 changed files with 3 additions and 4 deletions
|
@ -102,7 +102,7 @@ const PostTable = () => {
|
|||
dataIndex: "",
|
||||
key: "actions",
|
||||
width: 50,
|
||||
render(post: any) {
|
||||
render() {
|
||||
return (
|
||||
<Popover
|
||||
content={
|
||||
|
|
|
@ -18,9 +18,8 @@ class MyDocument extends Document {
|
|||
<>
|
||||
{initialProps.styles}
|
||||
{styles}
|
||||
</>
|
||||
) as // TODO: Investigate typescript
|
||||
any
|
||||
</> // TODO: Investigate typescript
|
||||
) as any
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue