File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1+ import TestFlightGate from "@/components/TestFlightGate" ;
2+
3+ export const metadata = {
4+ title : "Join TestFlight | iFly" ,
5+ description : "Access the iFly TestFlight build." ,
6+ robots : {
7+ index : false ,
8+ follow : false ,
9+ } ,
10+ } ;
11+
12+ export default function SecretTestFlightPage ( ) {
13+ return < TestFlightGate testflightUrl = "https://testflight.apple.com/join/9mbKzrZH" /> ;
14+ }
Original file line number Diff line number Diff line change @@ -10,11 +10,16 @@ declare global {
1010 }
1111}
1212
13- const TESTFLIGHT_URL = "https://testflight.apple.com/join/9ZEfnyMP" ;
13+ const DEFAULT_TESTFLIGHT_URL = "https://testflight.apple.com/join/9ZEfnyMP" ;
1414const TWITTER_URL = "https://x.com/provenanceapp" ;
1515const STORAGE_KEY = "ifly_testflight_gate_passed" ;
1616
17- export default function TestFlightGate ( ) {
17+ interface TestFlightGateProps {
18+ testflightUrl ?: string ;
19+ }
20+
21+ export default function TestFlightGate ( { testflightUrl } : TestFlightGateProps = { } ) {
22+ const TESTFLIGHT_URL = testflightUrl || DEFAULT_TESTFLIGHT_URL ;
1823 const [ gatePassed , setGatePassed ] = useState < boolean > ( false ) ;
1924 const [ checking , setChecking ] = useState < boolean > ( true ) ;
2025
You can’t perform that action at this time.
0 commit comments