From 1df7d944643e09b65dc504092ce78426d3c86319 Mon Sep 17 00:00:00 2001 From: HHH-GH Date: Thu, 15 Jun 2023 10:10:38 +0800 Subject: [PATCH] Default maxSkills set to 5 to try to keep the skills list to two lines in the QuestTile --- packages/web/components/Quest/Skills.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/components/Quest/Skills.tsx b/packages/web/components/Quest/Skills.tsx index a6a870a9..123e5fa8 100644 --- a/packages/web/components/Quest/Skills.tsx +++ b/packages/web/components/Quest/Skills.tsx @@ -70,7 +70,7 @@ interface SkillsProps { maxSkills?: number; } export const SkillsTags: React.FC = ({ - maxSkills = 6, + maxSkills = 5, skills, }) => { /**