We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const totalLaunchCount = launchData.launch_service_provider.total_launch_count; const consecutiveLaunchCount = launchData.launch_service_provider.consecutive_successful_launches;
Should be
const totalLaunchCount = launchData.rocket.configuration.total_launch_count; const consecutiveLaunchCount = launchData.rocket.configuration.consecutive_successful_launches;
maybe? This is just for the one configuration, might need a second call to get the vehicle-specific stats.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should be
maybe? This is just for the one configuration, might need a second call to get the vehicle-specific stats.
The text was updated successfully, but these errors were encountered: