Upload 132 files
Browse files
frontend/src/features/roomSetup/roomSetupHooks.ts
CHANGED
|
@@ -8,7 +8,6 @@ import {
|
|
| 8 |
} from "react";
|
| 9 |
import { useNavigate } from "react-router-dom";
|
| 10 |
import useAppStore, { useHistoryStore } from "../../store/useAppStore";
|
| 11 |
-
import { useApplyTexture } from "../../hooks/useApplyTexture";
|
| 12 |
|
| 13 |
export function useRoomSetup(): {
|
| 14 |
isDragging: boolean;
|
|
|
|
| 8 |
} from "react";
|
| 9 |
import { useNavigate } from "react-router-dom";
|
| 10 |
import useAppStore, { useHistoryStore } from "../../store/useAppStore";
|
|
|
|
| 11 |
|
| 12 |
export function useRoomSetup(): {
|
| 13 |
isDragging: boolean;
|
frontend/src/features/roomVisualizer/RoomVisualizer.tsx
CHANGED
|
@@ -27,6 +27,7 @@ import { useRoomVisualizer } from "./roomVisualizerHooks";
|
|
| 27 |
import { useCatalogProducts } from "./useCatalogProducts";
|
| 28 |
import { RoomPreviewPanel } from "./RoomPreviewPanel";
|
| 29 |
import useAppStore from "../../store/useAppStore";
|
|
|
|
| 30 |
// No segmentation canvas: we remove mask-based flows and use defaults
|
| 31 |
import { useApplyTexture } from "../../hooks/useApplyTexture";
|
| 32 |
import type { SegmentMeta } from "../../hooks/useSegmentCanvas";
|
|
|
|
| 27 |
import { useCatalogProducts } from "./useCatalogProducts";
|
| 28 |
import { RoomPreviewPanel } from "./RoomPreviewPanel";
|
| 29 |
import useAppStore from "../../store/useAppStore";
|
| 30 |
+
import { API_BASE } from "../../api/client";
|
| 31 |
// No segmentation canvas: we remove mask-based flows and use defaults
|
| 32 |
import { useApplyTexture } from "../../hooks/useApplyTexture";
|
| 33 |
import type { SegmentMeta } from "../../hooks/useSegmentCanvas";
|