Skip to content

Commit 846444f

Browse files
Corrected the appostrophe s for project creation (#277)
Co-authored-by: Loris Olivier <53363974+loris-maru@users.noreply.github.com>
1 parent 2b71730 commit 846444f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/VirtualLab/item/project-item.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import Link from 'next/link';
21
import { ArrowRightOutlined } from '@ant-design/icons';
2+
import Link from 'next/link';
33

4-
import { classNames } from '@/util/utils';
5-
import { dateColumnInfoToRender } from '@/util/date';
64
import { useLastTruthyValue } from '@/hooks/hooks';
75
import { projectBalanceAtomFamily } from '@/state/virtual-lab/projects';
6+
import { dateColumnInfoToRender } from '@/util/date';
7+
import { classNames } from '@/util/utils';
88

99
type Props = {
1010
id: string;
@@ -33,7 +33,7 @@ export default function Item({ id, description, vlabId, name, creationDate, memb
3333
<div>
3434
<h3 className="mb-1 text-3xl font-bold">{name}</h3>
3535
<p className="text-base text-primary-2">
36-
Project&#39;s creation date:{' '}
36+
Project creation date:{' '}
3737
<span className="text-white">{dateColumnInfoToRender(creationDate).text}</span>
3838
</p>
3939
</div>

0 commit comments

Comments
 (0)