Fix wrong to string usage

This commit is contained in:
Vitor Pamplona
2026-03-02 17:43:34 -05:00
parent 254ef7081b
commit d3343c2747
@@ -83,6 +83,7 @@ import com.vitorpamplona.amethyst.ui.navigation.navs.INav
import com.vitorpamplona.amethyst.ui.navigation.routes.Route import com.vitorpamplona.amethyst.ui.navigation.routes.Route
import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel
import com.vitorpamplona.amethyst.ui.stringRes import com.vitorpamplona.amethyst.ui.stringRes
import com.vitorpamplona.quartz.nip01Core.relay.normalizer.displayUrl
import com.vitorpamplona.quartz.nip64Chess.LiveChessGameState import com.vitorpamplona.quartz.nip64Chess.LiveChessGameState
import kotlinx.coroutines.delay import kotlinx.coroutines.delay
import kotlinx.coroutines.launch import kotlinx.coroutines.launch
@@ -289,9 +290,9 @@ fun ChessLobbyScreen(
sheetState = rememberModalBottomSheetState(), sheetState = rememberModalBottomSheetState(),
) { ) {
ChessRelaySettingsSheet( ChessRelaySettingsSheet(
inboxRelays = inboxRelays.map { it.toString() }, inboxRelays = inboxRelays.map { it.displayUrl() },
outboxRelays = outboxRelays.map { it.toString() }, outboxRelays = outboxRelays.map { it.displayUrl() },
globalRelays = globalRelays.map { it.toString() }, globalRelays = globalRelays.map { it.displayUrl() },
challengeCount = challenges.size, challengeCount = challenges.size,
publicGameCount = publicGames.size, publicGameCount = publicGames.size,
) )