moved refer friend section

This commit was merged in pull request #790.
This commit is contained in:
victorAnumudu
2024-09-24 22:07:33 +01:00
parent 19c2500263
commit 24e2a905d2
@@ -10,8 +10,8 @@ const AccountDashboard = ({ className, bannerList, offersList }) => {
let [offerPopout, setOfferPopout] = useState({ show: false, data: {} }); // STATE TO HOLD THE VALUE OF THE ALERT DETAILS AND DETERMINE WHEN TO SHOW
// getting the upper three banners for the home layout
const getUpperBanner = bannerList?.filter((value, idx) => idx <= 2);
const getLowerBanner = bannerList?.filter((value, idx) => idx > 2);
const getUpperBanner = bannerList?.filter((value, idx) => idx < 2);
const getLowerBanner = bannerList?.filter((value, idx) => idx >= 2);
let getImage = ({ banner_location, banner }) => {
if (banner_location == "LOCAL") {