Compare commits

..

1 Commits

Author SHA1 Message Date
Connor Byrne
7256ae081f fix: add explicit type parameters to useTemplateRef in LinearView
Add explicit type parameters to fix TS7022 errors during declaration
file generation where refs were implicitly typed as 'any'.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-06-19 15:58:41 -07:00
2 changed files with 4 additions and 8 deletions

View File

@@ -15,11 +15,6 @@ reviews:
- github-actions[bot]
pre_merge_checks:
override_requested_reviewers_only: true
# Explicitly disable the built-in docstring coverage check, which is
# enabled via organization-level settings. This repo opts out at the
# repo level without affecting other org repos.
docstrings:
mode: 'off'
custom_checks:
- name: End-to-end regression coverage for fixes
mode: error

View File

@@ -88,9 +88,10 @@ const { onResizeEnd } = useStablePrimeVueSplitterSizer(
const TYPEFORM_WIDGET_ID = 'jmmzmlKw'
const bottomLeftRef = useTemplateRef('bottomLeftRef')
const bottomRightRef = useTemplateRef('bottomRightRef')
const linearWorkflowRef = useTemplateRef('linearWorkflowRef')
const bottomLeftRef = useTemplateRef<HTMLDivElement>('bottomLeftRef')
const bottomRightRef = useTemplateRef<HTMLDivElement>('bottomRightRef')
const linearWorkflowRef =
useTemplateRef<InstanceType<typeof LinearControls>>('linearWorkflowRef')
function dragDrop(e: DragEvent) {
const { dataTransfer } = e