@@ -70,7 +70,6 @@ import types.ImageFolder
7070import types.UserAccount
7171import ui.components.BackIcon
7272import ui.components.CharacterEidolon
73- import ui.components.CharacterTraceTree.CharacterTraceTree
7473import ui.components.HeaderData
7574import ui.components.InfoAdviceLightcone
7675import ui.components.InfoAdviceRelic
@@ -205,15 +204,15 @@ fun CharacterInfoPage(
205204 .align(Alignment .Center ),
206205 verticalArrangement = Arrangement .spacedBy(30 .dp)
207206 ) {
208- item { InfoBioColumn (charInfoJson, combatType, path, isUserOwned = ! UserAccount .INSTANCE .characterList.none { it.officialId!! == characterId }, isFullEidolon = false , pageSize = pageSize) }
209- item { InfoBasicStatus (charInfoJson, StatusType .CHARACTER ) }
210- item { CharacterTraceTree (charInfoJson, path, characterName, dialogTitle, dialogDisplay,dialogLastTrigType, dialogComponent) }
211- item { CharacterEidolon (charInfoJson, characterName, dialogTitle, dialogDisplay, dialogLastTrigType, dialogComponent) }
212- item { InfoAdviceLightcone (charWeightJsonObject) }
213- item { InfoAdviceRelic (charWeightJsonObject) }
214- item { InfoAdviceTeammate (charWeightJsonObject, characterId.toString(), dialogTitle, dialogDisplay, dialogLastTrigType, dialogComponent) }
215- item { InfoStory (charInfoJson) }
216- item { Box (modifier = Modifier .navigationBarsPadding().height(72 .dp)) }
207+ item(key = " InfoBioColumn " ) { InfoBioColumn (charInfoJson, combatType, path, isUserOwned = ! UserAccount .INSTANCE .characterList.none { it.officialId!! == characterId }, isFullEidolon = false , pageSize = pageSize) }
208+ item(key = " InfoBasicStatus " ) { InfoBasicStatus (charInfoJson, StatusType .CHARACTER ) }
209+ // item(key = "CharacterTraceTree") { CharacterTraceTree(charInfoJson, path, characterName, dialogTitle, dialogDisplay,dialogLastTrigType, dialogComponent) }
210+ item(key = " CharacterEidolon " ) { CharacterEidolon (charInfoJson, characterName, dialogTitle, dialogDisplay, dialogLastTrigType, dialogComponent) }
211+ item(key = " InfoAdviceLightcone " ) { InfoAdviceLightcone (charWeightJsonObject) }
212+ item(key = " InfoAdviceRelic " ) { InfoAdviceRelic (charWeightJsonObject) }
213+ item(key = " InfoAdviceTeammate " ) { InfoAdviceTeammate (charWeightJsonObject, characterId.toString(), dialogTitle, dialogDisplay, dialogLastTrigType, dialogComponent) }
214+ item(key = " InfoStory " ) { InfoStory (charInfoJson) }
215+ item(key = " PaddingABox " ) { Box (modifier = Modifier .navigationBarsPadding().height(72 .dp)) }
217216
218217 }
219218
0 commit comments