Skip to content

Commit

Permalink
Fix the reddit component
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Mar 3, 2023
1 parent a79f476 commit 28120e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions packages/web/src/components/main-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ export const MainFooter: React.FC = () => {
The Company of Heroes is registered trademark of SEGA Holdings. Co
<br />
The COH2 Images and other assets are owned by Relic Entertainment and/or SEGA
<br />
<br />
Visit{" "}
<Link href={"https://coh3stats.com"} target="_blank" rel="noopener noreferrer">
coh3stats.com
</Link>{" "}
for Company of Heroes 3 stats and analytics
</Footer>
);
};
2 changes: 1 addition & 1 deletion packages/web/src/components/reddit/reddit-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const RedditCard: React.FC<Props> = (size) => {
(async () => {
try {
const res = await fetch(
"https://www.reddit.com/r/CompanyOfHeroes/top.json?limit=50&t=week",
"https://www.reddit.com/r/CompanyOfHeroes/top.json?limit=100&t=month",
{},
);
const resData = await res.json();
Expand Down

0 comments on commit 28120e5

Please sign in to comment.