refactor: Update material default value and remove console logs for cleaner output

This commit is contained in:
2025-04-25 11:49:39 +05:30
parent 0ba771907a
commit c0e0bcb69d
5 changed files with 8 additions and 11 deletions

View File

@@ -9,12 +9,9 @@ function RoboticArmInstances() {
return (
<>
{
armBots?.map((robot: any) => (
<RoboticArmInstance armdetals={robot} />
)
)
armBots?.map((robot) => (
<RoboticArmInstance key={robot.modelUuid} armdetals={robot} />
))
}
</>