Copilot commented on code in PR #330:
URL:
https://github.com/apache/kvrocks-controller/pull/330#discussion_r2244205186
##########
webui/src/app/namespaces/[namespace]/clusters/[cluster]/shards/[shard]/nodes/[node]/page.tsx:
##########
@@ -21,7 +21,7 @@
import { listNodes } from "@/app/lib/api";
import { NodeSidebar } from "@/app/ui/sidebar";
-import { Box, Typography, Chip, Paper, Divider, Grid, Alert } from
"@mui/material";
+import { Box, Typography, Chip, Paper, Divider, Grid, Alert, IconButton } from
"@mui/material";
Review Comment:
The import includes 'Chip' and 'Divider' components that are no longer used
in the redesigned component. These unused imports should be removed to keep the
code clean.
```suggestion
import { Box, Typography, Paper, Grid, Alert, IconButton } from
"@mui/material";
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]