fix: Backend added along with missing pages
Some checks failed
Velocity-OS Deployment Pipeline / lint (push) Has been cancelled
Velocity-OS Deployment Pipeline / build-and-push (agents) (push) Has been cancelled
Velocity-OS Deployment Pipeline / build-and-push (core) (push) Has been cancelled
Velocity-OS Deployment Pipeline / build-and-push (media-engine) (push) Has been cancelled
Velocity-OS Deployment Pipeline / build-and-push (webos) (push) Has been cancelled
Velocity-OS Deployment Pipeline / sign-images (agents) (push) Has been cancelled
Velocity-OS Deployment Pipeline / sign-images (core) (push) Has been cancelled
Velocity-OS Deployment Pipeline / sign-images (media-engine) (push) Has been cancelled
Velocity-OS Deployment Pipeline / sign-images (webos) (push) Has been cancelled
Velocity-OS Deployment Pipeline / notify-ingress (push) Has been cancelled

This commit is contained in:
2026-05-01 14:42:42 +05:30
parent effd19531a
commit 70ef8578d0
60 changed files with 25045 additions and 30 deletions

View File

@@ -178,7 +178,7 @@ export default function PropertyEntity() {
// ── 3D Model component (R3F) ──────────────────────────────────
function PropertyModel({ url }: { url: string }) {
const { scene } = useGLTF(url);
const meshRef = useRef<any>();
const meshRef = useRef<any>(null);
useFrame((_, delta) => {
if (meshRef.current) {
@@ -191,7 +191,7 @@ function PropertyModel({ url }: { url: string }) {
// Placeholder building geometry when no GLB model available
function PlaceholderBuilding() {
const ref = useRef<any>();
const ref = useRef<any>(null);
useFrame((_, delta) => {
if (ref.current) ref.current.rotation.y += delta * 0.1;
});