修复帖子图片尺寸问题

This commit is contained in:
al 2024-11-05 21:34:45 +08:00
parent d788e19a44
commit 1413751c95
3 changed files with 2 additions and 4 deletions

View File

@ -522,7 +522,7 @@ export default function CreateProfile() {
}}
onClick={handleSubmit}
>
{isSubmitting ? "正在保存..." : "保存设置"}
{isSubmitting ? "正在保存..." : "开通空间"}
</Button>
</div>
</div>

View File

@ -204,8 +204,6 @@ export default function spacePaymentSetting() {
const openSuperEveryFalse = Object.values(superSingle).every(
(it) => !it.enable
);
debugger;
if (!spacePrice || !ironFanPrice || (openSuper && openSuperEveryFalse)) {
Toast.show({
icon: "fail",

View File

@ -238,7 +238,7 @@ export async function uploadImage(asset, h, w) {
src_id: auth.directory + "/" + auth.filename,
md5: info.md5Hash,
h: h || info.height,
w: h || info.height,
w: w || info.width,
fmt: asset.type,
};
const base = baseRequest();