Default maxSkills set to 5 to try to keep the skills list to two lines in the QuestTile

This commit is contained in:
HHH-GH
2023-06-15 10:10:38 +08:00
committed by Alec LaLonde
parent 37ce27f7f5
commit 1df7d94464

View File

@@ -70,7 +70,7 @@ interface SkillsProps {
maxSkills?: number;
}
export const SkillsTags: React.FC<SkillsProps> = ({
maxSkills = 6,
maxSkills = 5,
skills,
}) => {
/**