Skip to content

Commit 21bf27e

Browse files
authored
fix: topic casing (#88)
1 parent 2235a23 commit 21bf27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/common/Pill.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const PillActionContainer = (props: React.PropsWithChildren<PillProps>) => {
3535
const animationClass = `transition-all duration-300 `
3636
const prop = {
3737
"data-selected": Boolean(props.isSelected),
38-
className: twMerge(selectedPillClass, animationClass, "max-content py-[4px] px-[6px] md:px-4 rounded-[5px] bg-gray-custom-700 hover:bg-gray-custom-600 hover:text-gray-custom-100 max-md:leading-[100%] cursor-pointer"),
38+
className: twMerge(selectedPillClass, animationClass, "max-content py-[4px] px-[6px] md:px-4 rounded-[5px] bg-gray-custom-700 hover:bg-gray-custom-600 hover:text-gray-custom-100 max-md:leading-[100%] cursor-pointer capitalize"),
3939
};
4040

4141
const defaultOnClick = (e: React.MouseEvent) => {e.stopPropagation()}

0 commit comments

Comments
 (0)