Parent
Part of #445
Severity
Low
Problem
Post-await setState without mounted check on save paths → dispose race can crash. Load path already guards.
Evidence
- lib/features/redis/redis_key_editor.dart (~117–131 and similar saves)
Acceptance
- All post-await setState paths check mounted
- Closing editor mid-save does not throw
Suggested fix
if (!mounted) return before each setState after await (parity with load).
Reactions are currently unavailable
Parent
Part of #445
Severity
Low
Problem
Post-await setState without mounted check on save paths → dispose race can crash. Load path already guards.
Evidence
Acceptance
Suggested fix
if (!mounted) return before each setState after await (parity with load).