{
+ 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,
+ },
+ }}
+ />
@@ -91,6 +130,15 @@ const MyEscrows = () => {
+
+