fix: 修复收件箱notfound的图片样式问题

pull/64/head
moonrailgun 2 years ago
parent 43a7d47ec5
commit 29c7ed5bbc

@ -21,7 +21,11 @@ export const InboxContent: React.FC = React.memo((props) => {
useInboxAck(inboxItemId ?? '');
if (!inboxItem) {
return <NotFound message={t('没有找到该记录')} />;
return (
<div className="w-full">
<NotFound message={t('没有找到该记录')} />
</div>
);
}
if (inboxItem.type === 'message') {

Loading…
Cancel
Save