Skip to content

Commit

Permalink
chore: remove unnecessary type
Browse files Browse the repository at this point in the history
  • Loading branch information
felipefialho committed Dec 16, 2024
1 parent 6f480ed commit 8ad7c7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/components/icon/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class AtomIcon {
this.updateSize(this.size)
}

render(): JSX.Element {
render() {
return (
<Host aria-hidden='true'>
<ion-icon
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class AtomInput {
this.atomFocus.emit()
}

render(): JSX.Element {
render() {
return (
<Host>
<ion-input
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/select/select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class AtomSelect {
this.atomDismiss.emit()
}

render(): JSX.Element {
render() {
return (
<Host
class={{
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/textarea/textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class AtomTextarea {
this.atomFocus.emit()
}

render(): JSX.Element {
render() {
return (
<Host>
<ion-textarea
Expand Down

0 comments on commit 8ad7c7b

Please sign in to comment.