Skip to content

Commit

Permalink
chore: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sztok7 authored and mpetrunic committed Jan 23, 2024
1 parent 4601638 commit c3f1e38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/widget/src/controllers/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class WidgetController implements ReactiveController {
this.host.requestUpdate();
}

async makeTranssaction(): Promise<void> {
async makeTransaction(): Promise<void> {
//TODO: trigger next tx from AssetTransfer class (approval or actual transfer)
}

Expand Down
2 changes: 1 addition & 1 deletion packages/widget/src/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class SygmaProtocolWidget extends LitElement {
<button
.disabled=${!this.widgetController.isReadyForTransfer}
type="button"
@click="${() => this.widgetController.makeTranssaction()}"
@click="${() => this.widgetController.makeTransaction()}"
class="actionButtonReady"
>
Transfer or Approve
Expand Down

0 comments on commit c3f1e38

Please sign in to comment.