Fix vite warning (#7360)

Specifically this warning:
```
[vite] warning: This case clause will never be evaluated because it duplicates an earlier case clause
|      case 'angledLine':
|      case 'startProfile':
|      case 'arcTo':
|           ^
|        return fnName
|      default:
```
This commit is contained in:
Adam Chalmers
2025-06-04 16:08:06 -05:00
committed by GitHub
parent 5235a731ba
commit 4502ad62b2

View File

@ -3223,7 +3223,6 @@ export function fnNameToToolTipFromSegment(
case 'tangentialArcTo':
case 'angledLine':
case 'startProfile':
case 'arcTo':
return fnName
default:
const err = `Unknown sketch line function ${fnName}`