We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc70e6 commit c8730b7Copy full SHA for c8730b7
pages/browse/index.js
@@ -70,10 +70,14 @@ const Browse = ({ session }) => {
70
<Item
71
key={service.id}
72
markdownDescriptionTruncated={(
73
- <Markdown rehypePlugins={[rehypeRaw]} children={truncated} />
+ <Markdown rehypePlugins={[rehypeRaw]}>
74
+ {truncated}
75
+ </Markdown>
76
)}
77
markdownDescriptionExtended={(
- <Markdown rehypePlugins={[rehypeRaw]} children={service?.description?.slice(cutOffIndex).trimStart()} />
78
79
+ {service?.description?.slice(cutOffIndex).trimStart()}
80
81
82
item={service}
83
withButtonLink={true}
0 commit comments