Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonfurtado2000 committed Jan 14, 2025
1 parent cef330c commit c32acba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const Notification = ({
const renderNotificationTitle = useCallback(() => {
const notificationTitle = String(title || t(titleKey ?? '', titleArguments));
const titleWords = notificationTitle.split(' ');
const [isTruncatedWordList, setIsTruncatedWordList] = useState<boolean[]>(
const [ isTruncatedWordList, setIsTruncatedWordList ] = useState<boolean[]>(
Array(titleWords.length).fill(false)
);
const spanRefs = useRef<HTMLSpanElement[] | null[]>([]);
Expand Down

0 comments on commit c32acba

Please sign in to comment.