Compare commits

..

2 Commits

Author SHA1 Message Date
Adrian Castro
ef97313fb9 fix: cast this value although it's fine 2024-04-20 15:27:25 +02:00
Adrian Castro
932dcddfc0 chore: format 2024-04-20 15:23:31 +02:00
2 changed files with 92 additions and 94 deletions

View File

@@ -90,12 +90,10 @@ const defineConfig = (): ExpoConfig => ({
[
"expo-pod-pinner",
{
"targetName": "movieweb",
"pods": [
{ "OpenSSL-Universal": "1.1.2200" }
]
}
]
targetName: "movieweb",
pods: [{ "OpenSSL-Universal": "1.1.2200" }],
},
],
],
});

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 (