Skip to content

Commit

Permalink
Update libs/sr/page-team/src/TeammateDisplay.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
frzyc and coderabbitai[bot] authored Nov 27, 2024
1 parent a03795e commit 4a2a6c0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/sr/page-team/src/TeammateDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ export default function TeammateDisplay() {
const frame = team.frames[presetIndex]
if (!frame) return [['char', 'Character', <CharacterSection />]]
return [
['combo', `Edit Combo ${presetIndex + 1}`, <ComboEditorSection />],
['char', 'Character', <CharacterSection />],
['talent', 'Talent', <CharacterTalentPane />],
['relicCond', 'Relic Conditionals', <RelicSheetsDisplay />],
['combo', `Edit Combo ${presetIndex + 1}`, <ComboEditorSection key="combo" />],
['char', 'Character', <CharacterSection key="char" />],
['talent', 'Talent', <CharacterTalentPane key="talent" />],
['relicCond', 'Relic Conditionals', <RelicSheetsDisplay key="relicCond" />],
[
'lightConeCond',
'Light Cone Conditionals',
<LightConeSheetsDisplay />,
<LightConeSheetsDisplay key="lightConeCond" />,
],
['opt', 'Optimize', <OptimizeSection />],
['opt', 'Optimize', <OptimizeSection key="opt" />],
] as const
}, [team, presetIndex])

Expand Down

0 comments on commit 4a2a6c0

Please sign in to comment.