fix: use fetch for single item

This commit is contained in:
2025-06-04 21:12:30 +02:00
parent 6a1fc193f4
commit 9983c51e3a

View File

@ -30,7 +30,7 @@ const ApiServiceEditPage: FC = () => {
const { serviceId } = useParams();
const apiService = useApiServices((state) => state.view);
const loadService = useApiServices((state) => state.fetch);
const loadService = useApiServices((state) => state.fetchSingle);
const updateApiService = useApiServices((state) => state.update);
const updating = useApiServices((state) => state.updating);