# Issue with the Pro Maps interior walls

**URL:** https://community.mappedin.com/t/issue-with-the-pro-maps-interior-walls/371
**Category:** Mappedin JS
**Tags:** react
**Created:** [June 25, 2025, 11:34am UTC](https://community.mappedin.com/t/issue-with-the-pro-maps-interior-walls/371 "2025-06-25T11:34:49Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Anand\_Choubey](https://yyz2.discourse-cdn.com/flex004/user_avatar/community.mappedin.com/anand_choubey/32/215_2.png) [@Anand\_Choubey](https://community.mappedin.com/u/Anand_Choubey)
#### Post date: [June 25, 2025, 11:34am UTC](https://community.mappedin.com/t/issue-with-the-pro-maps-interior-walls/371/1 "2025-06-25T11:34:49Z")

</div>

Hello Team ,

How to remove the Interior Walls , I am using react SDK ?

---

<div class="post-metadata">

### Author: ![KimCodeashian](https://yyz2.discourse-cdn.com/flex004/user_avatar/community.mappedin.com/kimcodeashian/32/74_2.png) [@KimCodeashian](https://community.mappedin.com/u/KimCodeashian)
#### Post date: [June 25, 2025, 6:23pm UTC](https://community.mappedin.com/t/issue-with-the-pro-maps-interior-walls/371/2 "2025-06-25T18:23:56Z")

</div>

Hey Anand!

You can do so with [updateState](https://docs.mappedin.com/react/v6/latest/enums/default.WALLS.html) 🙂

```auto
// hide walls
mapView.updateState('exterior-walls', { visible: false })
mapView.updateState('interior-walls', { visible: false })

```
