From a20cee0f63d82b38a54d72c826de38cc61864b30 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Sat, 23 May 2026 09:23:39 +0000 Subject: [PATCH] fix(chart): replace non-existent Upgrade icon with Sparkles --- memento-note/components/chart-suggestions-dialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memento-note/components/chart-suggestions-dialog.tsx b/memento-note/components/chart-suggestions-dialog.tsx index 8313fd7..d645277 100644 --- a/memento-note/components/chart-suggestions-dialog.tsx +++ b/memento-note/components/chart-suggestions-dialog.tsx @@ -4,7 +4,7 @@ import { useState, useEffect } from 'react' import { createPortal } from 'react-dom' import { NoteChartFromCode } from './note-chart' import { suggestCharts, chartSuggestionToMarkdown, type ChartSuggestion, type SuggestChartsResponse } from '@/lib/ai/services/chart-suggestion.service' -import { BarChart3, X, Search, AlertCircle, Upgrade } from 'lucide-react' +import { BarChart3, X, Search, AlertCircle, Sparkles } from 'lucide-react' import { cn } from '@/lib/utils' // Chart type to color mapping for visual variety @@ -157,7 +157,7 @@ export function ChartSuggestionsDialog({ ) : response?.quotaExceeded ? (
- +

AI Quota Exceeded

{response.error || 'You have reached your AI usage limit.'}