in file: com.halilibo.richtext.ui.util.UUID.kt
You have it set up as an expect/actual, which means that you need to implement it for each platform.
If you replace the platform specific code with the pure kotlin: Uuid.random().toString() when you dont need to implement it for all of them.
package com.halilibo.richtext.ui.util
import kotlin.uuid.ExperimentalUuidApi
import kotlin.uuid.Uuid
@OptIn(ExperimentalUuidApi::class)
internal fun randomUUID(): String = Uuid.random().toString()