Skip to content

Commit

Permalink
fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcobain committed Apr 6, 2024
1 parent a5be92e commit 0a7524f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-app/tests/integration/components/velcro-test.gts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module('Integration | Component | velcro', function (hooks) {
});

test('it renders with setHook', async function (assert) {
let hookModifier = modifier((element, [setHook]) => {
let hookModifier = modifier((element: HTMLElement | SVGElement, [setHook]: [(element: HTMLElement | SVGElement) => void]) => {
setHook(element);
});

Expand Down

0 comments on commit 0a7524f

Please sign in to comment.