chore: move AddWhatCondModal to legacy

This commit is contained in:
amhsirak
2025-11-25 15:55:28 +05:30
parent ad8df66ecd
commit 1f8a9cc41c
2 changed files with 6 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
import { WhereWhatPair } from "maxun-core";
import { GenericModal } from "../ui/GenericModal";
import { modalStyle } from "./AddWhereCondModal";
import { GenericModal } from "../../src/components/ui/GenericModal";
import { modalStyle } from "../../src/components/recorder/AddWhereCondModal";
import { Button, TextField, Typography } from "@mui/material";
import React, { useRef } from "react";
import { KeyValueForm } from "./KeyValueForm";
import { ClearButton } from "../ui/buttons/ClearButton";
import { useSocketStore } from "../../context/socket";
import { KeyValueForm } from "../../src/components/recorder/KeyValueForm";
import { ClearButton } from "../../src/components/ui/buttons/ClearButton";
import { useSocketStore } from "../../src/context/socket";
interface AddWhatCondModalProps {
isOpen: boolean;

View File

@@ -12,7 +12,7 @@ import NotificationImportantIcon from '@mui/icons-material/NotificationImportant
import { RemoveButton } from "../ui/buttons/RemoveButton";
import { AddWhereCondModal } from "./AddWhereCondModal";
import { useSocketStore } from "../../context/socket";
import { AddWhatCondModal } from "./AddWhatCondModal";
import { AddWhatCondModal } from "../../../legacy/src/AddWhatCondModal";
interface PairDetailProps {
pair: WhereWhatPair | null;