c7dc525157
Adding `<ResumePayload>` to encodeToString made it bind to the wrong overload — the compiler picked `encodeToString(SerializationStrategy<T>, T)` and tried to treat `payload` as the serializer. Switched to the explicit form: json.encodeToString(ResumePayload.serializer(), payload) Always unambiguous. (Decode is fine — `decodeFromString<T>(String)` isn't overloaded the same way.) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>