Skip to content

Commit 7b402d6

Browse files
vayungodaraclaude
andcommitted
fix: unify Dashboard header flame icon with Stats page
Dashboard header was using <Fire> + var(--warning); Stats uses <Flame> + var(--urgency-amber). Different icon shape and color. Swapped to <Flame> + --urgency-amber so streak indicators match across surfaces. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 97a09f6 commit 7b402d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/dashboard/DashboardClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useEffect, useCallback, useMemo } from 'react';
44
import { motion, AnimatePresence, LayoutGroup } from 'framer-motion';
55
import { createClient } from '@/lib/supabase/client';
66
import { useKeyboardShortcutsSafe } from '@/lib/KeyboardShortcutsContext';
7-
import { Plus, Fire } from '@phosphor-icons/react';
7+
import { Plus, Flame } from '@phosphor-icons/react';
88
import { fadeInUp, buttonHover, buttonTap, smoothTransition } from '@/lib/animations';
99
import { calculateStreak } from '@/lib/streaks';
1010
import styles from './Dashboard.module.css';
@@ -158,7 +158,7 @@ export default function DashboardClient({ user }) {
158158
{overduePacts.length > 0 && ` \u00b7 ${overduePacts.length} overdue`}
159159
{' \u00b7 '}
160160
<span className={styles.streakHighlight}>
161-
<Fire size={16} weight="fill" color="var(--warning)" style={{ verticalAlign: 'text-bottom', display: 'inline' }} />{' '}
161+
<Flame size={16} weight="fill" color="var(--urgency-amber)" style={{ verticalAlign: 'text-bottom', display: 'inline' }} />{' '}
162162
{streakData.currentStreak > 0 ? `${streakData.currentStreak} day streak` : 'Start your streak'}
163163
</span>
164164
</p>

0 commit comments

Comments
 (0)