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 9dac96e commit 4e32049Copy full SHA for 4e32049
pages/pro-help/index.page.tsx
@@ -5,6 +5,7 @@ import Head from 'next/head';
5
import { Headline1 } from '~/components/Headlines';
6
import { SectionContext } from '~/context';
7
import { DocsHelp } from '~/components/DocsHelp';
8
+import StyledMarkdown from '~/components/StyledMarkdown';
9
10
interface ContractorLink {
11
title: string;
@@ -186,7 +187,7 @@ export default function ProHelp({ contractorData }: ProHelpPageProps) {
186
187
</a>
188
</div>
189
<div className='text-sm w-full'>
- <p className='text-justify'>{contractor.bio}</p>
190
+ <StyledMarkdown markdown={contractor.bio}/>
191
<p className='my-3 font-bold'>
192
Previous work and relevant links
193
</p>
0 commit comments