Skip to content

Commit

Permalink
fix: update cdn link to cf
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanInnes committed Nov 8, 2024
1 parent 9588031 commit 053277b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constants/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const links: {[name: string]: string} = {
facebook: 'https://www.facebook.com/FlyByWireSimulations/',
opencollective: 'https://opencollective.com/flybywire',
docsfaq: 'https://docs.flybywiresim.com/faq',
installer: 'https://cdn.flybywiresim.com/installer/release/FlyByWire_Installer_Setup.exe',
installer: 'https://flybywirecdn.com/installer/release/FlyByWire_Installer_Setup.exe',
efb: 'https://docs.flybywiresim.com/aircraft/common/flypados3',
};
3 changes: 2 additions & 1 deletion src/pages/downloads/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Section from '../../components/Utils/Section';
import Container from '../../components/Utils/Container';
import Button from '../../components/Button/Button';
import DownloadLinks from '../../components/Downloads/DownloadLinks';
import { links } from '../../constants/links';

const Downloads: NextPage = () => (
<>
Expand All @@ -25,7 +26,7 @@ const Downloads: NextPage = () => (
Our easy-to-use installer is the easiest way to get started with our addons. Simply launch and
install any addon you want, with only two clicks.
</p>
<Link href="https://cdn.flybywiresim.com/installer/release/FlyByWire_Installer_Setup.exe">
<Link href={links.installer}>
<Button label="Download" theme="primary" className="mt-auto" />
</Link>
</div>
Expand Down

0 comments on commit 053277b

Please sign in to comment.