Skip to content

Commit

Permalink
Recognise Mark as a maintainer (#1415)
Browse files Browse the repository at this point in the history
* Recognise Mark as a maintainer

* oopz

* oopz2
  • Loading branch information
ethteck authored Jan 24, 2025
1 parent b75f772 commit 700388b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions frontend/src/app/(navfooter)/credits/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ContributorsList, {
} from "./ContributorsList";
import LinkList from "./LinkList";

const MAINTAINER_USERNAMES = ["ethteck", "bates64"];
const MAINTAINER_USERNAMES = ["ethteck", "bates64", "mkst"];
const OTHER_PROJECTS = {
"asm-differ": "https://github.com/simonlindholm/asm-differ",
m2c: "https://github.com/matt-kempster/m2c",
Expand Down Expand Up @@ -96,8 +96,11 @@ export default async function Page() {
</h1>
<p className="py-4">
decomp.me is maintained by{" "}
<Contributor contributor={maintainers[0]} /> and{" "}
<Contributor contributor={maintainers[1]} />.
<Contributor contributor={maintainers[0]} />
{", "}
<Contributor contributor={maintainers[1]} />
{", and "}
<Contributor contributor={maintainers[2]} />.
</p>
<div className="my-4 border-gray-6 border-y">
<ContributorsList contributors={contributors} />
Expand Down

0 comments on commit 700388b

Please sign in to comment.