File tree 4 files changed +16
-10
lines changed
4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ interface LukeSkywalker {
10
10
}
11
11
12
12
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
+ ) ;
16
18
17
19
return data ;
18
20
} ;
Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ interface LukeSkywalker {
10
10
}
11
11
12
12
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
+ ) ;
16
18
17
19
return data ;
18
20
} ;
Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ interface LukeSkywalker {
10
10
}
11
11
12
12
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
+ ) ;
16
18
17
19
return data as LukeSkywalker ;
18
20
} ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ interface LukeSkywalker {
11
11
12
12
export const fetchLukeSkywalker = async ( ) => {
13
13
const data : LukeSkywalker = await fetch (
14
- "https://swapi.dev /api/people/1"
14
+ "https://swapi.py4e.com /api/people/1"
15
15
) . then ( ( res ) => {
16
16
return res . json ( ) ;
17
17
} ) ;
You can’t perform that action at this time.
0 commit comments