Skip to content

Commit

Permalink
chore(webhooks): update webhook.go (#1666)
Browse files Browse the repository at this point in the history
udpate -> update
  • Loading branch information
eltociear authored Oct 4, 2024
1 parent a7e4c67 commit 5ddbdf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/handler/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func (w *webhookHandler) Update(ctx echo.Context) error {
err = persister.Update(*webhook)
if err != nil {
ctx.Logger().Error(err)
return fmt.Errorf("unable to udpate webhook: %w", err)
return fmt.Errorf("unable to update webhook: %w", err)
}

return ctx.JSON(http.StatusOK, webhook)
Expand Down

0 comments on commit 5ddbdf9

Please sign in to comment.