From 269b1c947897d01fd62485dbaa29616c167c4645 Mon Sep 17 00:00:00 2001 From: DhanushSantosh Date: Fri, 23 Jan 2026 18:01:24 +0530 Subject: [PATCH] fix: show session usage window on board usage button --- apps/ui/src/components/ui/provider-icon.tsx | 34 ++------------------- 1 file changed, 3 insertions(+), 31 deletions(-) diff --git a/apps/ui/src/components/ui/provider-icon.tsx b/apps/ui/src/components/ui/provider-icon.tsx index 456a09c8..6c99cbad 100644 --- a/apps/ui/src/components/ui/provider-icon.tsx +++ b/apps/ui/src/components/ui/provider-icon.tsx @@ -1,4 +1,4 @@ -import type { ComponentType, ImgHTMLAttributes, SVGProps } from 'react'; +import type { ComponentType, SVGProps } from 'react'; import { cn } from '@/lib/utils'; import type { AgentModel, ModelProvider } from '@automaker/types'; import { getProviderFromModel } from '@/lib/utils'; @@ -166,36 +166,8 @@ export function CursorIcon(props: Omit) { return ; } -const GEMINI_ICON_URL = new URL('../../assets/icons/gemini-icon.svg', import.meta.url).toString(); -const GEMINI_ICON_ALT = 'Gemini'; - -type GeminiIconProps = Omit, 'src'> & { - title?: string; -}; - -export function GeminiIcon({ title, className, ...props }: GeminiIconProps) { - const { - role, - 'aria-label': ariaLabel, - 'aria-labelledby': ariaLabelledby, - 'aria-hidden': ariaHidden, - ...rest - } = props; - const hasAccessibleLabel = Boolean(title || ariaLabel || ariaLabelledby); - const fallbackAlt = hasAccessibleLabel ? (title ?? ariaLabel ?? GEMINI_ICON_ALT) : ''; - - return ( - {fallbackAlt} - ); +export function GeminiIcon(props: Omit) { + return ; } export function GrokIcon(props: Omit) {