Browse Source

Fix markdown usage error: p elements can't nest!

master
Dejvino 11 months ago
parent
commit
4bcc2e53cf
2 changed files with 1 additions and 2 deletions
  1. +1
    -1
      src/app/components/AboutBrief.tsx
  2. +0
    -1
      src/app/components/job/JobsCards.tsx

+ 1
- 1
src/app/components/AboutBrief.tsx View File

@@ -8,7 +8,7 @@ export default function AboutBrief() {
return (
<Container className='about-brief' fluid>
<h1>{person.name}</h1>
<p className='brief'>{md(person.brief)}</p>
<div className='brief'>{md(person.brief)}</div>
</Container>
)
}

+ 0
- 1
src/app/components/job/JobsCards.tsx View File

@@ -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 = {


Loading…
Cancel
Save