Skip to content

Commit 65aae72

Browse files
committed
Fix: Linting error
1 parent a6b9000 commit 65aae72

File tree

1 file changed

+2
-2
lines changed
  • packages/components/src/components/hds/filter-bar

1 file changed

+2
-2
lines changed

packages/components/src/components/hds/filter-bar/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Component from '@glimmer/component';
77
import { action } from '@ember/object';
88
import { tracked } from '@glimmer/tracking';
99

10-
import type { ComponentLike, WithBoundArgs } from '@glint/template';
10+
import type { WithBoundArgs } from '@glint/template';
1111

1212
import type {
1313
HdsFilterBarFilters,
@@ -30,7 +30,7 @@ export interface HdsFilterBarSignature {
3030
Blocks: {
3131
default?: [
3232
{
33-
ActionsDropdown?: ComponentLike<typeof HdsDropdown>;
33+
ActionsDropdown?: WithBoundArgs<typeof HdsDropdown, never>;
3434
FiltersDropdown?: WithBoundArgs<
3535
typeof HdsFilterBarFiltersDropdown,
3636
'filters' | 'onFilter'

0 commit comments

Comments
 (0)