feat(scenery): added the scenery top records list mode

This commit is contained in:
2026-04-09 02:05:32 +02:00
parent e1f4a740ac
commit b999e84b15
5 changed files with 200 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export class HttpClient {
const data = await fetch(absoluteURL);
if (!data.ok) {
throw new Error(`Cannot fetch: ${absoluteURL}`);
throw new Error(`Cannot fetch ${absoluteURL}: ${data.statusText}`);
}
return data.json();