Improve the generate commit message design (#26233)

[WIP]

Release Notes:

- N/A

---------

Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
This commit is contained in:
Marshall Bowers 2025-03-06 20:21:20 -05:00 committed by GitHub
parent 3345666557
commit 8f4b7aa5db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 181 additions and 114 deletions

View file

@ -35,7 +35,7 @@ use futures::{
Future, FutureExt, StreamExt,
};
use gpui::{
action_as, actions, canvas, impl_action_as, impl_actions, point, relative, size,
action_as, actions, canvas, deferred, impl_action_as, impl_actions, point, relative, size,
transparent_black, Action, AnyView, AnyWeakView, App, AsyncApp, AsyncWindowContext, Bounds,
Context, CursorStyle, Decorations, DragMoveEvent, Entity, EntityId, EventEmitter, FocusHandle,
Focusable, Global, Hsla, KeyContext, Keystroke, ManagedView, MouseButton, PathPromptOptions,
@ -5546,7 +5546,7 @@ impl Render for Workspace {
.children(self.render_notifications(window, cx)),
)
.child(self.status_bar.clone())
.child(self.modal_layer.clone())
.child(deferred(self.modal_layer.clone()))
.child(self.toast_layer.clone()),
),
window,