Skip to content

Commit

Permalink
Merge pull request #384 from appwrite/hotfix/community
Browse files Browse the repository at this point in the history
Hotfix: community page
  • Loading branch information
TGlide authored Dec 21, 2023
2 parents 930e56a + 24709c4 commit a1cf6ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/PreFooter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
href="https://cloud.appwrite.io"
class="aw-button is-transparent aw-u-cross-child-center"
>
<span class="text">Start building today</span>
<span class="text">Get started</span>
</a>
</section>
<section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ export const load = async () => {
// fetch issues from github, appwrite/appwrite repo
const response = await fetch('https://api.github.com/repos/appwrite/appwrite/issues');
const issues = await response.json();
if (issues?.message?.includes('API rate limit exceeded')) {
return { issues: mockIssues };
}

// map issues to our format
return {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/heroes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
</ul>
</div>
</div>
<div class="aw-big-padding-section-level-2">
<div class="aw-big-padding-section-level-2 aw-u-overflow-hidden">
<div class="scroll-carousel" use:infiniteScroll>
<ul class="inner">
<!-- eslint-disable-next-line @typescript-eslint/no-unused-vars -->
Expand Down

0 comments on commit a1cf6ef

Please sign in to comment.