Skip to content

Commit

Permalink
chore: fixing linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wainola committed Jan 22, 2024
1 parent 9df492c commit e7a6879
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/widget/src/components/address-input/address-input.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { LitElement, html } from 'lit';
import type { HTMLTemplateResult } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import { styles } from './styles';
import { ifDefined } from 'lit/directives/if-defined.js';
import { styles } from './styles';

@customElement('address-input')
export default class AddressInput extends LitElement {
Expand All @@ -14,7 +15,7 @@ export default class AddressInput extends LitElement {
@property()
handleAddress?: (e: Event) => void;

render() {
render(): HTMLTemplateResult {
return html`<section class="switch-container">
<div class="input-address-container">
<label>Send to</label>
Expand Down

0 comments on commit e7a6879

Please sign in to comment.