Fix the feedback modal (#26793)

Cole Miller created

Closes #26787

Release Notes:

- Fixed a bug that prevented typing in the in-app feedback form

Change summary

crates/workspace/src/modal_layer.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/workspace/src/modal_layer.rs 🔗

@@ -193,7 +193,7 @@ impl Render for ModalLayer {
                     .child(
                         h_flex()
                             .occlude()
-                            .child(div().child(active_modal.modal.view()))
+                            .child(active_modal.modal.view())
                             .on_mouse_down(MouseButton::Left, |_, _, cx| {
                                 cx.stop_propagation();
                             }),