diff --git a/src/app/(withAuth)/dashboard/page.js b/src/app/(withAuth)/dashboard/page.js
index c06d81d..a7efa2a 100644
--- a/src/app/(withAuth)/dashboard/page.js
+++ b/src/app/(withAuth)/dashboard/page.js
@@ -1,31 +1,9 @@
"use client";
-import { Button } from "@mui/material";
-import axios from "axios";
const Page = () => {
- const handler = () => {
- try {
- axios.get("https://rms.witel.ir/test_login?username=witel", {
- withCredentials: true,
- });
- } catch (error) {
- console.log(error);
- }
- };
- const handler2 = () => {
- try {
- const res = axios.get("https://rms.witel.ir/webapi/user/get-permission", {
- withCredentials: true,
- });
- console.log(res);
- } catch (error) {
- console.log(error);
- }
- };
+
return (
<>
-
-
>
);
};