Skip to content

Commit

Permalink
fix #126
Browse files Browse the repository at this point in the history
  • Loading branch information
powercasgamer authored and MiniDigger committed Jan 25, 2025
1 parent ca23656 commit 19a6fd2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/downloads/paper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ const PaperDownloads = ({ project }: ProjectProps): ReactElement => {
);
};

PaperDownloads.softwareProps = {
github: "https://github.com/PaperMC/Paper",
};

export default PaperDownloads;

export const getStaticProps = getProjectProps("paper");
4 changes: 4 additions & 0 deletions src/pages/downloads/velocity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ const VelocityDownloads = ({ project }: ProjectProps): ReactElement => {
);
};

VelocityDownloads.softwareProps = {
github: "https://github.com/PaperMC/Velocity",
};

export default VelocityDownloads;

export const getStaticProps = getProjectProps("velocity");
4 changes: 4 additions & 0 deletions src/pages/downloads/waterfall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ const WaterfallDownloads = ({ project }: ProjectProps): ReactElement => {
);
};

WaterfallDownloads.softwareProps = {
github: "https://github.com/PaperMC/Waterfall",
};

export default WaterfallDownloads;

export const getStaticProps = getProjectProps("waterfall");

0 comments on commit 19a6fd2

Please sign in to comment.