ソースを参照

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

master
Dejvino 1年前
コミット
4bcc2e53cf
2個のファイルの変更1行の追加2行の削除
  1. +1
    -1
      src/app/components/AboutBrief.tsx
  2. +0
    -1
      src/app/components/job/JobsCards.tsx

+ 1
- 1
src/app/components/AboutBrief.tsx ファイルの表示

@@ -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 ファイルの表示

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


読み込み中…
キャンセル
保存