Skip to content

Commit

Permalink
update endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanweiler92 committed Apr 30, 2024
1 parent a335ca5 commit 78981d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/content/layers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Layers = () => {
const [layerData, setLayerData] = useState([])

const requestLayers = async () => {
const url = "https://uhkookzof2.execute-api.us-west-2.amazonaws.com/dev/all-layers"
const url = "https://worldview.earthdata.nasa.gov/eic/all-layers"
try {
const response = await fetch(url);
const data = await response.json();
Expand Down
2 changes: 1 addition & 1 deletion src/components/content/scenarios.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Scenarios = () => {
const [scenarioData, setScenarioData] = useState([]);

const requestScenarios = async () => {
const url = "https://uhkookzof2.execute-api.us-west-2.amazonaws.com/dev/all-scenarios"
const url = "https://worldview.earthdata.nasa.gov/eic/all-scenarios"
try {
const response = await fetch(url);
const data = await response.json();
Expand Down

0 comments on commit 78981d8

Please sign in to comment.