diff --git a/src/components/modules/escrow/ui/pages/MyEscrows.tsx b/src/components/modules/escrow/ui/pages/MyEscrows.tsx
index 8352ebcc..c315b117 100644
--- a/src/components/modules/escrow/ui/pages/MyEscrows.tsx
+++ b/src/components/modules/escrow/ui/pages/MyEscrows.tsx
@@ -9,8 +9,6 @@ import MyEscrowsTable from "@/components/modules/escrow/ui/tables/MyEscrowsTable
import MyEscrowsCards from "@/components/modules/escrow/ui/cards/MyEscrowsCards";
import MyEscrowsFilter from "@/components/modules/escrow/ui/filters/MyEscrowsFilter";
import { useGlobalUIBoundedStore } from "@/core/store/ui";
-import Joyride from "react-joyride";
-import { useState } from "react";
const MyEscrows = () => {
const isLoading = useGlobalUIBoundedStore((state) => state.isLoading);
@@ -18,48 +16,12 @@ const MyEscrows = () => {
const activeMode = useEscrowBoundedStore((state) => state.activeMode);
const theme = useGlobalUIBoundedStore((state) => state.theme);
- const [run, setRun] = useState(false);
-
return (
<>
{isLoading ? (
) : (
<>
- {
- const { status } = data;
- if (status === "skipped" || status === "finished") {
- setRun(false);
- }
- }}
- disableOverlayClose
- styles={{
- options:
- theme === "dark"
- ? {
- backgroundColor: "#19191B",
- overlayColor: "rgba(0, 0, 0, 0.80)",
- primaryColor: "#006BE4",
- textColor: "#FFF",
- width: 500,
- zIndex: 1000,
- }
- : {
- backgroundColor: "#FFFFFF",
- overlayColor: "rgba(0, 0, 0, 0.60)",
- primaryColor: "#006BE4",
- textColor: "#000",
- width: 500,
- zIndex: 1000,
- },
- }}
- />
-