Skip to content

Commit 31cadae

Browse files
authored
Merge pull request #311 from tyler27/bugfix/hardcoded-radius
bugfix: Fixing hardcoded radius
2 parents 33c2c25 + 4065a73 commit 31cadae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layout/circular2d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface CircularLayoutInputs extends LayoutFactoryProps {
66
/**
77
* Radius of the circle.
88
*/
9-
radius: 300;
9+
radius: number;
1010
}
1111

1212
export function circular2d({

0 commit comments

Comments
 (0)