diff --git a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift index 19bedd4ee..902186ad3 100644 --- a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift +++ b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift @@ -39,13 +39,8 @@ struct TerminalCommandPaletteView: View { } .frame(width: geometry.size.width, height: geometry.size.height, alignment: .top) } - .transition( - .move(edge: .top) - .combined(with: .opacity) - ) } } - .animation(.spring(response: 0.4, dampingFraction: 0.8), value: isPresented) .onChange(of: isPresented) { newValue in // When the command palette disappears we need to send focus back to the // surface view we were overlaid on top of. There's probably a better way