fix: 无法复制弹窗过小

This commit is contained in:
CaIon
2024-03-25 16:49:53 +08:00
parent dbb6c44fdd
commit fe4c469e8a

View File

@@ -426,8 +426,11 @@ const TokensTable = () => {
if (await copy(text)) {
showSuccess('已复制到剪贴板!');
} else {
// setSearchKeyword(text);
Modal.error({ title: '无法复制到剪贴板,请手动复制', content: text });
Modal.error({
title: '无法复制到剪贴板,请手动复制',
content: text,
size: 'large',
});
}
};