chore: fix warning
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good

This commit is contained in:
2025-08-25 11:50:40 +02:00
parent ce4ee0af30
commit bc8ad02c13

View File

@ -36,7 +36,7 @@ func wrapApiErrorWithMessage(err *api.Error) error {
return err
}
return errors.Wrapf(err, message)
return errors.Wrap(err, message)
}
func wrapInvalidFieldValueErr(err *api.Error) error {