Skip to content

Commit

Permalink
Import type
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan authored and keithamus committed Jul 20, 2023
1 parent b249335 commit a90c942
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {controller, target} from '@github/catalyst'
import IncludeFragmentElement from '@github/include-fragment-element'
import type {IncludeFragmentElement} from '@github/include-fragment-element'

type SelectVariant = 'none' | 'single' | 'multiple' | null
type SelectedItem = {
Expand Down Expand Up @@ -93,7 +93,9 @@ export class ActionMenuElement extends HTMLElement {
this.#updateInput()

if (this.includeFragment) {
this.includeFragment.addEventListener('include-fragment-replaced', this, {signal})
this.includeFragment.addEventListener('include-fragment-replaced', this, {
signal
})
}
}

Expand Down

0 comments on commit a90c942

Please sign in to comment.