Skip to content

Commit

Permalink
tweak show date logic, correct infra page
Browse files Browse the repository at this point in the history
  • Loading branch information
Simek committed Jun 15, 2024
1 parent f60f888 commit 31df41e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docs/pages/build-reference/infrastructure.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
modificationDate: April 8th, 2024
title: Build server infrastructure
sidebar_title: Server infrastructure
maxHeadingDepth: 4
Expand All @@ -8,8 +9,6 @@ description: Learn about the current build server infrastructure when using EAS.
import { Collapsible } from '~/ui/components/Collapsible';
import { BuildResourceList } from '~/ui/components/utils/infrastructure';

> This document was last updated on **April 8th, 2024**.
## Builder IP addresses

Here is the [up-to-date list of builder IP addresses](https://expo.dev/eas-build-worker-ips.txt).
Expand Down
2 changes: 1 addition & 1 deletion docs/ui/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const Footer = ({
const router = useRouter();
const isAPIPage = router?.pathname.includes('/sdk/') ?? false;
const isTutorial = router?.pathname.includes('/tutorial/') ?? false;
const isExpoPackage = packageName && packageName.startsWith('expo-');
const isExpoPackage = packageName ? packageName.startsWith('expo-') : isAPIPage;

const shouldShowModifiedDate = !isExpoPackage && !isTutorial;

Expand Down

0 comments on commit 31df41e

Please sign in to comment.