- update dependencies

- upgrade gatsby v2 to v3
- update functions
This commit is contained in:
Amruth Pillai
2021-05-29 11:47:34 +05:30
parent b0bd8c94f3
commit 2c22c13f3e
133 changed files with 44805 additions and 13338 deletions
+4 -5
View File
@@ -1,5 +1,5 @@
import React, { memo, useContext } from 'react';
import { useTranslation } from 'react-i18next';
import React, { memo, useContext } from 'react';
import ReactMarkdown from 'react-markdown';
import PageContext from '../../../contexts/PageContext';
import { formatDateRange, isItemVisible, safetyCheck } from '../../../utils';
@@ -33,10 +33,9 @@ const ProjectItem = ({ item, language }) => {
)}
</div>
{item.summary && (
<ReactMarkdown
className="markdown mt-2 text-sm"
source={item.summary}
/>
<ReactMarkdown className="markdown mt-2 text-sm">
{item.summary}
</ReactMarkdown>
)}
</div>
);