From 01e8eb89d47aed67399cc4a3ca53136040134405 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 19 Feb 2023 22:14:38 -0800 Subject: [PATCH] macos: remove unused vstack --- macos/Sources/TerminalView.swift | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/macos/Sources/TerminalView.swift b/macos/Sources/TerminalView.swift index 123388802..32f8a0dba 100644 --- a/macos/Sources/TerminalView.swift +++ b/macos/Sources/TerminalView.swift @@ -13,10 +13,8 @@ struct TerminalView: View { private var hasFocus: Bool { surfaceFocus && isKeyWindow } var body: some View { - VStack { - TerminalSurfaceView(app, hasFocus: hasFocus, title: $title) - .focused($surfaceFocus) - .navigationTitle(title) - } + TerminalSurfaceView(app, hasFocus: hasFocus, title: $title) + .focused($surfaceFocus) + .navigationTitle(title) } }