Display the all highlights modal from PDFs via the article actions button

This commit is contained in:
Jackson Harper
2022-04-14 15:06:27 -07:00
parent d33d383891
commit 0715dafd4b
4 changed files with 24 additions and 8 deletions

View File

@ -35,7 +35,6 @@ type ArticleContainerProps = {
export function ArticleContainer(props: ArticleContainerProps): JSX.Element {
const [showShareModal, setShowShareModal] = useState(false)
const [showReportIssuesModal, setShowReportIssuesModal] = useState(false)
const [showHighlightsModal, setShowHighlightsModal] = useState(props.showHighlightsModal)
const [fontSize, setFontSize] = useState(props.fontSize ?? 20)
const updateFontSize = async (newFontSize: number) => {