diff --git a/src/Pages/Top.elm b/src/Pages/Top.elm index 77f9bb3..0f4bded 100644 --- a/src/Pages/Top.elm +++ b/src/Pages/Top.elm @@ -381,6 +381,11 @@ loadApps = Http.request { url = "https://recipes.coopcloud.tech/recipes.json" , expect = Http.expectJson GotApps appListDecoder + , headers = [ Http.header "Content-Type" "application/json" ] + , body = Http.emptyBody + , method = "GET" + , timeout = Nothing + , tracker = Nothing }