Skip to content
New issue

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

Feature/edit faqs #212

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/FAQ/faq.md.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const faq = `## Frequent Questions

- 15-minute timeout on any API request, and

- Endpoints that support paging are limited to 25,000 rows per page
- Endpoints that support paging are limited to 500 rows per page

* The CAMPD app user interface limits downloads from the streaming services to 1,000,000 records but there is no download records limit on the streaming services APIs.

Expand Down
12 changes: 5 additions & 7 deletions src/components/Layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,22 @@ export const Layout = () => {
<div>
<SubHeader />
<Alert
type="warning"
type="info"
align="left"
style={{ marginTop: 0 }}
// headingLevel prop is from a newer version of @trussworks/react-uswds
//headingLevel="h4"
slim
>
The {" "}
The Clean Air Markets Program Data (CAMPD) 1.3 has been released! Click{" "}
<a
href="https://www.govinfo.gov/content/pkg/FR-2023-07-31/pdf/2023-14180.pdf"
href="https://campd.epa.gov/"
target="_blank"
rel="noopener noreferrer"
>
Cross-State Air Pollution Rule NOx Ozone Season Expanded Group 2
here
</a>{" "}
(CSOSG2E) program can be used as a parameter value for any "program code" parameters with API requests
but may not be available as an option in the interactive swagger API documentation.
We are working to resolve this issue.
to check it out!
</Alert>
<main style={{ maxWidth: "64rem", margin: "0 auto" }}>
<Outlet />
Expand Down
Loading