Fix Go compile issue. (#25986)

The issue was due to 2 merges changing the same code.
This commit is contained in:
Victor Lyuboslavsky 2025-02-03 12:58:08 -06:00 committed by GitHub
parent d109e72cbe
commit 49b0dcff2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,7 +103,7 @@ type updateAppStoreAppResponse struct {
Err error `json:"error,omitempty"`
}
func (r updateAppStoreAppResponse) error() error { return r.Err }
func (r updateAppStoreAppResponse) Error() error { return r.Err }
func updateAppStoreAppEndpoint(ctx context.Context, request interface{}, svc fleet.Service) (errorer, error) {
req := request.(*updateAppStoreAppRequest)