Anything changed with serialization of enum classes in 1.0.0 on Kotlin/JS? I have the following error when I try to serialize enum class without
@Serializable
annotation:
Copy code
SerializationException: Serializer for class 'Test' is not found.
Mark the class as @Serializable or provide the serializer explicitly.
On Kotlin/JS explicitly declared serializer should be used for interfaces and enums without @Serializable annotation