Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-19 17:09:50 +04:00
parent 18201957b1
commit f368e6a2f5
15 changed files with 121 additions and 122 deletions

View file

@ -37,7 +37,7 @@ sealed interface AccountNameUM {
*
* @property raw the raw string value of the custom account name
*/
data class Custom(internal val raw: String) : AccountNameUM {
data class Custom(val raw: String) : AccountNameUM {
override val value: TextReference = stringReference(value = raw)
}