refactoring

This commit is contained in:
ISA
2025-05-26 09:14:13 +02:00
parent 34f460902e
commit 90db829095
15 changed files with 21 additions and 21 deletions

View File

@@ -3,11 +3,11 @@ import React, { useState, useEffect } from "react";
import Select from "react-select";
import { useSelector, useDispatch } from "react-redux";
import { fetchLocationDevicesThunk } from "../../redux/thunks/database/fetchLocationDevicesThunk";
import { fetchPoiTypThunk } from "../../redux/thunks/database/fetchPoiTypThunk";
import { fetchPoiTypThunk } from "../../redux/thunks/database/pois/fetchPoiTypThunk";
import { selectMapLayersState } from "../../redux/slices/mapLayersSlice";
import { selectPoiTypData, selectPoiTypStatus } from "../../redux/slices/database/poiTypSlice";
import { deletePoiThunk } from "../../redux/thunks/database/deletePoiThunk";
import { updatePoiThunk } from "../../redux/thunks/database/updatePoiThunk";
import { deletePoiThunk } from "../../redux/thunks/database/pois/deletePoiThunk";
import { updatePoiThunk } from "../../redux/thunks/database/pois/updatePoiThunk";
const PoiUpdateModal = ({ onClose, poiData }) => {
const dispatch = useDispatch();