:point_up: fixed by changing `KProperty1.readableN...
# announcements
z
☝️ fixed by changing
KProperty1.readableName
to:
Copy code
val <T, R> KProperty1<T, R>.readableName: String
    get() {
        val annotation = annotations.elementAtOrNull(0)
        return when(annotation) {
            is ReadableName -> annotation.name
            else -> ""
        }
    }