diff --git a/Shared/Views/DayView/DayView.swift b/Shared/Views/DayView/DayView.swift index 805da21..a69b1a0 100644 --- a/Shared/Views/DayView/DayView.swift +++ b/Shared/Views/DayView/DayView.swift @@ -574,50 +574,19 @@ extension DayView { } private func patternSectionHeader(month: Int, year: Int) -> some View { - ZStack { - // Subtle mood icon pattern background - GeometryReader { geo in - let iconSize: CGFloat = 12 - let spacing: CGFloat = 20 - let cols = Int(geo.size.width / spacing) + 1 - let rows = 3 + HStack(spacing: 10) { + Image(systemName: "calendar") + .font(.system(size: 16, weight: .semibold)) + .foregroundColor(textColor.opacity(0.6)) - Canvas { context, size in - for row in 0..