chore: Link preview style changes

This commit is contained in:
2023-04-18 12:47:01 +01:00
parent 664d4bf976
commit 3d8269b674
10 changed files with 70 additions and 65 deletions

View File

@ -85,7 +85,8 @@ export default function LoginPage() {
useEffect(() => {
const ret = unwrap(Artwork.at(Artwork.length * Math.random()));
proxy(ret.link).then(a => setArt({ ...ret, link: a }));
const url = proxy(ret.link);
setArt({ ...ret, link: url });
}, []);
async function doLogin() {