market popout height fixed

This commit was merged in pull request #867.
This commit is contained in:
victorAnumudu
2025-07-14 17:48:32 +01:00
parent 2bf8b2fe06
commit 7f534556be
4 changed files with 10 additions and 12 deletions
+5 -3
View File
@@ -1,4 +1,5 @@
import React, { useState, useEffect } from "react";
import {Navigate} from 'react-router-dom'
import datas from "../../data/product_data.json";
import Layout from "../Partials/Layout";
import usersService from "../../services/UsersService";
@@ -43,9 +44,10 @@ export default function Home(props) {
}
</>
) : (
<div>
You are not logged in or your account type is not supported.
</div>
// <div>
// You are not logged in or your account type is not supported.
// </div>
<Navigate to='/login' />
)}
</>
</div>