Skip to content

Commit

Permalink
revert fix width on Option cards
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Nov 12, 2024
1 parent a5670fc commit fd68092
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,7 @@ const Option: React.FC<any> = (props) => {
<li
className={classNames("card", "option", { wasVisited: props.wasVisited })}
>
<Link
style={{ width: "200px" }}
href={href}
prefetch={false}
onClick={(e) => e.preventDefault()}
>
<Link href={href} prefetch={false} onClick={(e) => e.preventDefault()}>
{props.data?.img && (
<Thumbnail
imageSource={props.data?.img}
Expand Down

0 comments on commit fd68092

Please sign in to comment.