Skip to content

Commit f50b1b6

Browse files
committed
fix: fmt
1 parent 4888e14 commit f50b1b6

4 files changed

Lines changed: 9 additions & 15 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ yarn-error.log*
3939
/playwright/.cache/
4040

4141
# IDE
42-
.idea
42+
.idea
43+
next-env.d.ts

data/orgas.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,41 +25,40 @@ export const formerOrgas: Array<Orga> = [
2525
name: 'Maxence Dalmais',
2626
avatarUrl: '/orgas/maxence.jpeg',
2727
social: {
28-
linkedin: 'maxencedalmais'
28+
linkedin: 'maxencedalmais',
2929
},
3030
},
3131
{
3232
name: 'Mickael Daniel',
3333
avatarUrl: '/orgas/mickaelD.jpeg',
3434
social: {
35-
linkedin: 'mickaeldaniel'
35+
linkedin: 'mickaeldaniel',
3636
},
3737
},
3838
{
3939
name: 'Matthieu Lux',
4040
avatarUrl: '/orgas/matthieu.jpeg',
4141
social: {
4242
linkedin: 'swiip',
43-
twitter: 'Swiip'
43+
twitter: 'Swiip',
4444
},
4545
},
4646
{
4747
name: 'Nicolas Morel',
4848
avatarUrl: '/orgas/nicolas.jpeg',
4949
social: {
50-
linkedin: 'nicolas-m-5b384a173'
50+
linkedin: 'nicolas-m-5b384a173',
5151
},
5252
},
5353
{
5454
name: 'Florian Traverse',
5555
avatarUrl: '/orgas/florian.jpeg',
5656
social: {
5757
linkedin: 'floriantraverse',
58-
}
59-
}
58+
},
59+
},
6060
];
6161

62-
6362
export const orgas: Array<Orga> = [
6463
{
6564
name: 'Mathieu Mure',

modules/about/Orgas.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ import { ListOfPeople } from '../person/ListOfPeople';
44

55
export const Orgas: React.FC = () => <ListOfPeople people={orgas} />;
66

7-
export const FormerOrgas: React.FC = () => <ListOfPeople people={formerOrgas} />;
7+
export const FormerOrgas: React.FC = () => <ListOfPeople people={formerOrgas} />;

next-env.d.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)