修复联系客服页面bug
This commit is contained in:
parent
2d8b170a9d
commit
6714753bba
|
@ -134,7 +134,7 @@ const ContactContent = (props) => {
|
||||||
<div className="flex flex-row">
|
<div className="flex flex-row">
|
||||||
<img
|
<img
|
||||||
className="w-12 h-12 rounded-full"
|
className="w-12 h-12 rounded-full"
|
||||||
src={item.avatar.images[0].urls[0]}
|
src={item.avatar?.images[0]?.urls[0]}
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col justify-around ml-2">
|
<div className="flex flex-col justify-around ml-2">
|
||||||
|
@ -331,7 +331,7 @@ const ContactContent = (props) => {
|
||||||
<div key={index} className="flex flex-row justify-start my-1">
|
<div key={index} className="flex flex-row justify-start my-1">
|
||||||
<img
|
<img
|
||||||
className="w-12 h-12 rounded-full"
|
className="w-12 h-12 rounded-full"
|
||||||
src={modalInfo.avatar.images[0].urls[0]}
|
src={modalInfo?.avatar?.images[0]?.urls[0]}
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col ml-2 p-2 bg-gray-200 rounded-lg">
|
<div className="flex flex-col ml-2 p-2 bg-gray-200 rounded-lg">
|
||||||
|
|
Loading…
Reference in New Issue