frontends icon indicating copy to clipboard operation
frontends copied to clipboard

[UTILS] Add api error handler

Open mdanilowicz opened this issue 2 months ago • 0 comments

Add a util function that will handle API errors management

if (error instanceof ApiClientError) {
      const errors = resolveApiErrors(error.details.errors);
      for (const error of errors) {
        pushError(error);
      }
    }

Acceptance Criteria

  • [ ] Util is added to the vue-demo-template
  • [ ] Util is added to the vue-starter-template

mdanilowicz avatar Oct 19 '25 18:10 mdanilowicz