Skip to content

Commit 826599b

Browse files
committed
fix(ux): remove leftover unused highlight prop attribute
1 parent 630f6a9 commit 826599b

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

app/customize/page.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { getExportSnippet, buildQueryParams } from './utils';
2727
function CustomizePageInner(): ReactElement {
2828
const [username, setUsername] = useState('');
2929
const [theme, setTheme] = useState('dark');
30-
const [isFlashing, setIsFlashing] = useState(false);
3130
const [bgHex, setBgHex] = useState('');
3231
const [accentHex, setAccentHex] = useState('');
3332
const [textHex, setTextHex] = useState('');
@@ -54,7 +53,6 @@ function CustomizePageInner(): ReactElement {
5453
const [svgContent, setSvgContent] = useState<string>('');
5554
const [svgState, setSvgState] = useState<'idle' | 'loading' | 'loaded' | 'error'>('idle');
5655
const [errorMessage, setErrorMessage] = useState<string | null>(null);
57-
const [isInputHighlighted, setIsInputHighlighted] = useState(false);
5856
const trimmedUsername = username.trim();
5957
const hasUsername = trimmedUsername.length > 0;
6058
const isRandomTheme = theme === 'random';
@@ -409,7 +407,6 @@ function CustomizePageInner(): ReactElement {
409407
setAccentHex('');
410408
setTextHex('');
411409
}}
412-
isHighlighted={isInputHighlighted}
413410
/>
414411
</motion.aside>
415412

0 commit comments

Comments
 (0)