diff options
| author | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-06-13 09:00:49 -0400 |
| commit | 2d6307f6eaa0803aefabae9e9232506611365b66 (patch) | |
| tree | 7d77764b51a8dcfef4ed5554be6028fea815a4ae /src/client/views/InkTangentHandles.tsx | |
| parent | b91057d00512446339e48fb8488a97a1e5ef03d5 (diff) | |
updated css and project to HTML5 standards. fixed border rounding for images.
Diffstat (limited to 'src/client/views/InkTangentHandles.tsx')
| -rw-r--r-- | src/client/views/InkTangentHandles.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/InkTangentHandles.tsx b/src/client/views/InkTangentHandles.tsx index 577acc4d1..0af46df5d 100644 --- a/src/client/views/InkTangentHandles.tsx +++ b/src/client/views/InkTangentHandles.tsx @@ -105,7 +105,6 @@ export class InkTangentHandles extends React.Component<InkHandlesProps> { return ( <> {tangentHandles.map((pts, i) => ( - // eslint-disable-next-line react/no-array-index-key <svg height="10" width="10" key={`hdl${i}`}> <circle cx={pts.X} @@ -135,7 +134,6 @@ export class InkTangentHandles extends React.Component<InkHandlesProps> { /> ); return ( - // eslint-disable-next-line react/no-array-index-key <svg height="100" width="100" key={`line${i}`}> {tangentLine(pts.X1, pts.Y1, pts.X2, pts.Y2)} {tangentLine(pts.X2, pts.Y2, pts.X3, pts.Y3)} |
