🚧 remove action col

This commit is contained in:
sam 2025-02-24 15:29:06 +08:00
parent 6c46cdcf3c
commit 6c9a41f8ca

View File

@ -105,7 +105,6 @@ const SungrowInverters = (props: Props) => {
<th>WeekData</th>
<th>Created At</th>
<th>Updated At</th>
<th className="text-center">Action</th>
</tr>
</thead>
<tbody>
@ -160,13 +159,6 @@ const SungrowInverters = (props: Props) => {
)} </td>
<td>{formatUnixTimestamp(data.createdAt)}</td>
<td>{formatUnixTimestamp(data.updatedAt)}</td>
<td className="text-center">
<Tippy content="Delete">
<button type="button">
<IconTrashLines className="m-auto" />
</button>
</Tippy>
</td>
</tr>
))}
</tbody>