reduce to XLarge

This commit is contained in:
2023-04-06 08:52:43 +10:00
parent 324054b3db
commit 23e620e168

View File

@@ -27,7 +27,7 @@
import { ref, watch } from "vue";
import { api } from "../helpers/api";
import { MediaResponse } from "../helpers/api.types";
import { imageLoad, imageXXLarge } from "../helpers/image";
import { imageLoad, imageXLarge } from "../helpers/image";
import SMButton from "./SMButton.vue";
import SMLoadingIcon from "./SMLoadingIcon.vue";
@@ -90,7 +90,7 @@ const handleLoad = () => {
watch(
() => imageUrl.value,
(value) => {
const url = imageXXLarge(value);
const url = imageXLarge(value);
styleObject["backgroundImage"] = `url('${url}')`;
}
);