Skip to content

Commit e430c2d

Browse files
committed
Updated SWAPI
1 parent e7029ea commit e430c2d

4 files changed

+16
-10
lines changed

src/09-promises.problem.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ interface LukeSkywalker {
1010
}
1111

1212
export const fetchLukeSkywalker = async (): LukeSkywalker => {
13-
const data = await fetch("https://swapi.dev/api/people/1").then((res) => {
14-
return res.json();
15-
});
13+
const data = await fetch("https://swapi.py4e.com/api/people/1").then(
14+
(res) => {
15+
return res.json();
16+
}
17+
);
1618

1719
return data;
1820
};

src/09-promises.solution.1.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ interface LukeSkywalker {
1010
}
1111

1212
export const fetchLukeSkywalker = async (): Promise<LukeSkywalker> => {
13-
const data = await fetch("https://swapi.dev/api/people/1").then((res) => {
14-
return res.json();
15-
});
13+
const data = await fetch("https://swapi.py4e.com/api/people/1").then(
14+
(res) => {
15+
return res.json();
16+
}
17+
);
1618

1719
return data;
1820
};

src/09-promises.solution.2.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ interface LukeSkywalker {
1010
}
1111

1212
export const fetchLukeSkywalker = async () => {
13-
const data = await fetch("https://swapi.dev/api/people/1").then((res) => {
14-
return res.json();
15-
});
13+
const data = await fetch("https://swapi.py4e.com/api/people/1").then(
14+
(res) => {
15+
return res.json();
16+
}
17+
);
1618

1719
return data as LukeSkywalker;
1820
};

src/09-promises.solution.3.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface LukeSkywalker {
1111

1212
export const fetchLukeSkywalker = async () => {
1313
const data: LukeSkywalker = await fetch(
14-
"https://swapi.dev/api/people/1"
14+
"https://swapi.py4e.com/api/people/1"
1515
).then((res) => {
1616
return res.json();
1717
});

0 commit comments

Comments
 (0)