fix: cast this value although it's fine

This commit is contained in:
Adrian Castro
2024-04-20 15:27:25 +02:00
parent 932dcddfc0
commit ef97313fb9

View File

@@ -13,7 +13,7 @@ export default function Page() {
const meta = useQuery({
queryKey: ["backendMeta", url],
queryFn: () => getBackendMeta(url),
queryFn: () => getBackendMeta(url as unknown as string),
});
return (