Fix avatar size

This commit is contained in:
Defectink
2022-04-22 16:19:33 +08:00
parent 68d6c75c7b
commit fabe003812
2 changed files with 2 additions and 3 deletions

View File

@ -24,7 +24,6 @@ const GistsCode = ({ gist, f }: Props) => {
async function getRawCode() {
const res = await fetch(url);
const raw = await res.text();
console.log(raw);
setRawCode(`\`\`\`${format ?? ''}\n${raw}`);
}
}, [format, url]);