diff --git a/qim3d/css/gradio.css b/qim3d/css/gradio.css
index d34102b481b50ca275ac3ac504d6782e98592f67..6e01ef357c99e95ee09fad64a7e14e45606e7f82 100644
--- a/qim3d/css/gradio.css
+++ b/qim3d/css/gradio.css
@@ -615,3 +615,8 @@ div.svelte-1frtwj3 {
 .hide-overflow{
   overflow: hidden !important;
 }
+
+
+.wrap.default{
+  visibility: hidden !important;
+}
\ No newline at end of file
diff --git a/qim3d/gui/data_explorer.py b/qim3d/gui/data_explorer.py
index bb2790f7bf1be85ab84430b53dee4700e31c54fd..17eb8268e5db8275e64cabb19a1b01519c9d3e04 100644
--- a/qim3d/gui/data_explorer.py
+++ b/qim3d/gui/data_explorer.py
@@ -247,14 +247,14 @@ class Interface:
 
                 
 
-            zpos.release(
+            zpos.change(
                 fn=self.update_zpos, inputs=[session, zpos], outputs=[session, zslice_plot]).success(
                 fn=pipeline.create_zslice_fig, inputs=[], outputs=zslice_plot,show_progress="hidden")
-            ypos.release(
+            ypos.change(
                 fn=self.update_ypos, inputs=[session, ypos], outputs=[session, yslice_plot]).success(
                 fn=pipeline.create_yslice_fig, inputs=[], outputs=yslice_plot,show_progress="hidden")
             
-            xpos.release(
+            xpos.change(
                 fn=self.update_xpos, inputs=[session, xpos], outputs=[session, xslice_plot]).success(
                 fn=pipeline.create_xslice_fig, inputs=[], outputs=xslice_plot,show_progress="hidden")