Fixed Logging In Issue

This commit was merged in pull request #9.
This commit is contained in:
2023-10-22 07:08:04 -07:00
parent eceb3178fd
commit 5e3e17e7c2
7 changed files with 38 additions and 59 deletions
-1
View File
@@ -1,4 +1,3 @@
import AuthRoute from "middlewares/AuthRoute";
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
+2 -4
View File
@@ -17,7 +17,7 @@ import BestSellingProducts from "@/components/Dashboard/eCommerce/BestSellingPro
import LiveVisitsOnOurSite from "@/components/Dashboard/eCommerce/LiveVisitsOnOurSite";
import AuthRoute from "middlewares/AuthRoute";
function MainPage() {
export default function MainPage() {
return (
<>
{/* Page title */}
@@ -83,6 +83,4 @@ function MainPage() {
</Grid>
</>
);
}
export default MainPage
}