From 4bcc2e53cfd3b0918ed0d59837b3dcd2bf439ea4 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Tue, 30 May 2023 14:01:43 +0200 Subject: [PATCH] Fix markdown usage error: p elements can't nest! --- src/app/components/AboutBrief.tsx | 2 +- src/app/components/job/JobsCards.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/components/AboutBrief.tsx b/src/app/components/AboutBrief.tsx index f093d15..4330534 100644 --- a/src/app/components/AboutBrief.tsx +++ b/src/app/components/AboutBrief.tsx @@ -8,7 +8,7 @@ export default function AboutBrief() { return (

{person.name}

-

{md(person.brief)}

+
{md(person.brief)}
) } diff --git a/src/app/components/job/JobsCards.tsx b/src/app/components/job/JobsCards.tsx index 9809499..043d053 100644 --- a/src/app/components/job/JobsCards.tsx +++ b/src/app/components/job/JobsCards.tsx @@ -4,7 +4,6 @@ import Container from 'react-bootstrap/Container'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import JobCard, { JobCardPlaceholder } from './JobCard'; -import { partition } from '../../utils'; import { JobListProps } from './types'; export type Props = {