diff --git a/src/forge/Information/Component/contributor.jsx b/src/forge/Information/Component/contributor.jsx
index dcfd83547..7b94574fc 100644
--- a/src/forge/Information/Component/contributor.jsx
+++ b/src/forge/Information/Component/contributor.jsx
@@ -17,7 +17,9 @@ function Contributor(props) {
const [ showList, setShowList] = useState([]);
function initList() {
- setShowList([].concat(personList, new Array(personList.length % 3 - 1).fill({})))
+ if (personList.length !== 3) {
+ setShowList([].concat(personList, new Array(personList.length % 3 - 1).fill({})))
+ }
}
useEffect(()=>{
diff --git a/src/forge/Information/Pages/zoneVIP.jsx b/src/forge/Information/Pages/zoneVIP.jsx
index aa004fe1b..b3d522d66 100644
--- a/src/forge/Information/Pages/zoneVIP.jsx
+++ b/src/forge/Information/Pages/zoneVIP.jsx
@@ -120,7 +120,9 @@ function ZoneVIP(props){
}
:
-
+ (
+ temp === 'zone1' ? :
+ )
}
)