diff --git a/Andromida/App/Views/Insights/Components/InsightDetailSheet.swift b/Andromida/App/Views/Insights/Components/InsightDetailSheet.swift index 2abad5a..b7c6d69 100644 --- a/Andromida/App/Views/Insights/Components/InsightDetailSheet.swift +++ b/Andromida/App/Views/Insights/Components/InsightDetailSheet.swift @@ -74,8 +74,6 @@ struct InsightDetailSheet: View { } } } - .presentationDetents([.medium, .large]) - .presentationDragIndicator(.visible) } // MARK: - Header Section diff --git a/Andromida/App/Views/Insights/InsightsView.swift b/Andromida/App/Views/Insights/InsightsView.swift index f05afa7..489f231 100644 --- a/Andromida/App/Views/Insights/InsightsView.swift +++ b/Andromida/App/Views/Insights/InsightsView.swift @@ -6,7 +6,11 @@ struct InsightsView: View { @State private var refreshToken = UUID() private let columns = [ - GridItem(.adaptive(minimum: AppMetrics.Size.insightCardMinWidth), spacing: Design.Spacing.medium) + GridItem( + .adaptive(minimum: AppMetrics.Size.insightCardMinWidth), + spacing: Design.Spacing.medium, + alignment: .top + ) ] var body: some View {