style(system-check-cog): Remove header section from status view

This commit is contained in:
Slipstreamm 2025-06-14 13:19:58 -06:00
parent 74be8ecb45
commit 9a016da0ee

View File

@ -81,12 +81,7 @@ class SystemStatusView(ui.LayoutView):
def _build_ui(self): def _build_ui(self):
"""Constructs the UI elements of the view.""" """Constructs the UI elements of the view."""
# Main container with Discord's "Blurple" color # Main container with Discord's "Blurple" color
container = ui.Container(accent_colour=discord.Color.from_rgb(88, 101, 242)) container = ui.Container(accent_colour=None)
# --- Header ---
header = ui.Section(accessory=ui.Thumbnail(media=self.bot_user.display_avatar.url))
header.add_item(ui.TextDisplay("**📊 System Status**"))
container.add_item(header)
# --- Bot & System Info --- # --- Bot & System Info ---
self._add_bot_system_info(container) self._add_bot_system_info(container)