diff --git a/src/components/BookmarkList.tsx b/src/components/BookmarkList.tsx index dbeed6f6..c5d72579 100644 --- a/src/components/BookmarkList.tsx +++ b/src/components/BookmarkList.tsx @@ -1,6 +1,6 @@ import React from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faChevronRight } from '@fortawesome/free-solid-svg-icons' +import { faChevronLeft } from '@fortawesome/free-solid-svg-icons' import { Bookmark } from '../types/bookmarks' import { BookmarkItem } from './BookmarkItem' import { formatDate, renderParsedContent } from '../utils/bookmarkUtils' @@ -35,7 +35,7 @@ export const BookmarkList: React.FC = ({ title="Expand bookmarks sidebar" aria-label="Expand bookmarks sidebar" > - + ) diff --git a/src/components/HighlightsPanel.tsx b/src/components/HighlightsPanel.tsx index b282850c..55cec031 100644 --- a/src/components/HighlightsPanel.tsx +++ b/src/components/HighlightsPanel.tsx @@ -1,6 +1,6 @@ import React, { useMemo, useState } from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faChevronRight, faChevronLeft, faHighlighter, faEye, faEyeSlash, faRotate } from '@fortawesome/free-solid-svg-icons' +import { faChevronRight, faHighlighter, faEye, faEyeSlash, faRotate } from '@fortawesome/free-solid-svg-icons' import { Highlight } from '../types/highlights' import { HighlightItem } from './HighlightItem' @@ -68,7 +68,7 @@ export const HighlightsPanel: React.FC = ({ title="Expand highlights panel" aria-label="Expand highlights panel" > - + )