Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinthong committed Dec 2, 2024
1 parent 46f8347 commit 0b43793
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/boxel-ui/addon/src/components/phone-input/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,16 @@ export interface SelectedItemSignature {
Args: {
option: any;
};
Element: HTMLElement;
Element: HTMLDivElement;
}

const PhoneSelectedItem: TemplateOnlyComponent<SelectedItemSignature> =
<template><div>{{@option.flag}} +{{@option.callingCode}}</div></template>;
// eslint-disable-next-line prettier/prettier TODO: fix this eslint error --> Insert `·[` prettier/prettier
<template>
<div>
{{@option.flag}}
+{{@option.callingCode}}
</div>
</template>;

export default PhoneInput;

0 comments on commit 0b43793

Please sign in to comment.