Skip to content

Commit

Permalink
fix: html console error on module card
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Gonzalez authored and Diego Gonzalez committed Feb 16, 2022
1 parent e79f406 commit d8a16b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModuleCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const ModuleCard: React.FC<ModuleCardProps> = ({
</div>
<div className="flex flex-col flex-1 p-6">
<h4 className={classnames('text-lg font-bold mb-3', classNameTitle)}>{title}</h4>
<p className={classnames('text-base mb-6 font-normal', classNameContent)}>{content}</p>
<div className={classnames('text-base mb-6 font-normal', classNameContent)}>{content}</div>
<div className="flex-1 inline-flex justify-end items-end w-full">
<button
onClick={onPressButton}
Expand Down

0 comments on commit d8a16b2

Please sign in to comment.