Increase sidebar image scale from 300px -> 450px

This commit is contained in:
jeffvli 2023-10-31 16:09:51 -07:00
parent 9756ed2d27
commit 364f53e124

View file

@ -79,9 +79,9 @@ export const Sidebar = () => {
const server = useCurrentServer();
const upsizedImageUrl = imageUrl
?.replace(/size=\d+/, 'size=300')
.replace(/width=\d+/, 'width=300')
.replace(/height=\d+/, 'height=300');
?.replace(/size=\d+/, 'size=450')
.replace(/width=\d+/, 'width=450')
.replace(/height=\d+/, 'height=450');
const showImage = sidebar.image;