bug: disable imgproxy for login page banners

This commit is contained in:
Kieran 2023-02-10 10:54:51 +00:00
parent f4bfa978ca
commit b1a2719209
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ export default function LoginPage() {
useEffect(() => {
const ret = unwrap(Artwork.at(Artwork.length * Math.random()));
proxy(ret.link).then(a => setArt({ ...ret, link: a }));
// disable for now because imgproxy is ded
// proxy(ret.link).then(a => setArt({ ...ret, link: a }));
setArt(ret);
}, []);
async function getNip05PubKey(addr: string) {