diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/data-context.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/data-context.ts b/lib/data-context.ts index f4c09c7..6779b92 100644 --- a/lib/data-context.ts +++ b/lib/data-context.ts @@ -49,7 +49,7 @@ export const fetchWeather = async (): Promise<Weather> => { }; export const fetchWhois = async (): Promise<WhoisUpdate[]> => - fetch("https://whois.simponic.xyz/updates") + fetch("https://whois.simponic.xyz/api/updates") .then((response) => response.json()) .then( (data) => |