Commit ce47032e by corpglory-dev

Run prettier

parent 3497c360
......@@ -54,8 +54,8 @@ export class Piechart extends PureComponent<Props> {
const height = this.containerElement.offsetHeight;
const radius = Math.min(width, height) / 2;
const outerRadius = radius - (radius / 10);
const innerRadius = pieType === PiechartType.PIE ? 0 : radius - (radius / 3);
const outerRadius = radius - radius / 10;
const innerRadius = pieType === PiechartType.PIE ? 0 : radius - radius / 3;
d3.select('.piechart-container svg').remove();
const svg = d3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment