while refactoring server methods i noticed library() at line 154 in 6-server.js is doing its own toast + axios dance instead of using the serverAction() helper that literally every other method (build, debug, run, clear, stop, destroy) uses
means it's missing:
- the SET_LOGS dispatch to hide logs panel
- callback support (onSuccess param)
- consistent error handling pattern
just needs to be this.serverAction('post', url, null) or whatever payload makes sense. already extracted the helper, just forgot this one.