From f61bac9d05f2c06d7f82d5e303ddf723cd0bf9b4 Mon Sep 17 00:00:00 2001 From: Bosco Ho Date: Fri, 29 Sep 2023 15:41:55 -0700 Subject: [PATCH] Comment out `TabSafeScrollView` logic: - Don't need this if we use system TabView with our custom fancy tab bar. --- Mlem/Custom Tab Bar/TabSafeScrollView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mlem/Custom Tab Bar/TabSafeScrollView.swift b/Mlem/Custom Tab Bar/TabSafeScrollView.swift index ed1551fcd..a84c14ea1 100644 --- a/Mlem/Custom Tab Bar/TabSafeScrollView.swift +++ b/Mlem/Custom Tab Bar/TabSafeScrollView.swift @@ -11,10 +11,10 @@ import SwiftUI struct TabSafeScrollView: ViewModifier { func body(content: Content) -> some View { content - .safeAreaInset(edge: .bottom) { - Spacer() - .frame(height: AppConstants.fancyTabBarHeight) - } +// .safeAreaInset(edge: .bottom) { +// Spacer() +// .frame(height: AppConstants.fancyTabBarHeight) +// } } }