Skip to content

Commit

Permalink
feat: drop broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Jun 15, 2023
1 parent f8e65a8 commit 745ef4f
Showing 1 changed file with 0 additions and 42 deletions.
42 changes: 0 additions & 42 deletions src/sources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,48 +64,6 @@ export let sources: Writable<ImageFactory[]> = writable([
enabled: true,
provider: "https://cataas.com/"
},
{
name: ImageType.RACCOON,
url: () => fetchURL("https://some-random-api.ml/img/raccoon")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.KANGAROO,
url: () => fetchURL("https://some-random-api.ml/img/kangaroo")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.BIRD,
url: () => fetchURL("https://some-random-api.ml/img/birb")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.PANDA,
url: () => fetchURL("https://some-random-api.ml/img/panda")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.KOALA,
url: () => fetchURL("https://some-random-api.ml/img/koala")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.RED_PANDA,
url: () => fetchURL("https://some-random-api.ml/img/red_panda")
.then(data => data.link),
enabled: true,
provider: "https://some-random-api.ml/"
},
{
name: ImageType.GENERIC,
url: async () => "https://picsum.photos/500/600?" + new Date(),
Expand Down

0 comments on commit 745ef4f

Please sign in to comment.