**Changes made:**
1. **`frontend/src/components/ui/wysiwyg.tsx`**:
- Removed imports for `INLINE_CODE`, `InlineCodeNode`, and `INLINE_CODE_TRANSFORMER`
- Removed `InlineCodeNode` from the registered nodes array
- Simplified transformers to use Lexical's built-in `TRANSFORMERS` (which includes `INLINE_CODE`)
2. **Deleted files:**
- `frontend/src/components/ui/wysiwyg/nodes/inline-code-node.tsx`
- `frontend/src/components/ui/wysiwyg/transformers/inline-code-transformer.ts`
**What this fixes:**
1. **Escaping bug** - Backticks will no longer be incorrectly escaped when saving inline code
2. **Cannot edit inline code** - You can now edit characters within inline code blocks (TextNode is editable, unlike DecoratorNode which was atomic)
The TypeScript and lint checks pass. You can test by:
1. Creating a task with inline code like `` `console.log()` ``
2. Saving and reloading - no backslashes should appear
3. Clicking inside inline code and editing individual characters