Skip to content

Commit 14c934b

Browse files
chore: format RadarChart test file
1 parent cdd5fe5 commit 14c934b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

components/dashboard/RadarChart.test.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,7 @@ describe('RadarChart', () => {
157157
}));
158158

159159
// Verify that not all circles are at the same position (indicating dynamic scaling)
160-
const uniquePositions = new Set(
161-
circlePositions.map((pos) => `${pos.cx},${pos.cy}`)
162-
);
160+
const uniquePositions = new Set(circlePositions.map((pos) => `${pos.cx},${pos.cy}`));
163161
expect(uniquePositions.size).toBeGreaterThan(1);
164162
});
165163
});

0 commit comments

Comments
 (0)