Skip to content

Commit

Permalink
remove cardinal line curve function
Browse files Browse the repository at this point in the history
  • Loading branch information
xvvvyz committed Jun 26, 2024
1 parent fd697d9 commit 16e40c6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/_components/insight-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const LINE_CURVE_FUNCTION_OPTIONS = [
{ id: LineCurveFunction.Linear, label: 'Linear' },
{ id: LineCurveFunction.Basis, label: 'Basis' },
{ id: LineCurveFunction.Bundle, label: 'Bundle' },
{ id: LineCurveFunction.Cardinal, label: 'Cardinal' },
{ id: LineCurveFunction.CatmullRom, label: 'Catmull-rom' },
{ id: LineCurveFunction.Step, label: 'Step' },
];
Expand Down
1 change: 0 additions & 1 deletion app/_constants/enum-line-curve-function.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
enum LineCurveFunction {
Basis = 'basis',
Bundle = 'bundle',
Cardinal = 'cardinal',
CatmullRom = 'catmull-rom',
Linear = 'linear',
Step = 'step',
Expand Down

0 comments on commit 16e40c6

Please sign in to comment.