Compare commits

...

3 Commits

Author SHA1 Message Date
Adrian Castro
a000848412 Merge ef97313fb9 into a3f184979e 2024-04-20 13:27:33 +00:00
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", "expo-pod-pinner",
{ {
"targetName": "movieweb", targetName: "movieweb",
"pods": [ pods: [{ "OpenSSL-Universal": "1.1.2200" }],
{ "OpenSSL-Universal": "1.1.2200" } },
] ],
}
]
], ],
}); });

View File

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