Skip to content

Commit a812b57

Browse files
committed
a
1 parent 1404584 commit a812b57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const layout: React.FC<
3333
{ name: "author", content: "Brighton ALT NET" },
3434
]}
3535
/>
36-
<Nav />
36+
<Nav />
3737

3838
<main role="main">
3939
{jumboTronTitle ? (

src/pages/directory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ const members = [
259259
},
260260
];
261261

262-
const sorted = sortBy(members, a => a.name);
262+
const sorted = sortBy(members, (a) => a.name);
263263

264264
const Directory: React.FC = () => (
265265
<Layout title="Directory">

0 commit comments

Comments
 (0)