Skip to content

Commit

Permalink
fix: use topic long title as preselected topic name
Browse files Browse the repository at this point in the history
  • Loading branch information
janrembold committed May 13, 2024
1 parent 86c670b commit 5708391
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ const PreselectedTopic = ({
</>
</Typography>
) : (
<Typography sx={sx}>{topic.name}</Typography>
<Typography sx={sx}>
{topic.titles?.long || topic.name}
</Typography>
)}
</>
);
Expand Down

0 comments on commit 5708391

Please sign in to comment.