Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
SuttonKyle committed Jun 6, 2024
2 parents c77b5ff + 861a850 commit c0d9d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const renderPDF = async (containerDiv: Element, documentUrl: string) => {
nextButton.className = 'next-button';
const prevButton = document.createElement('button');
prevButton.className = 'prev-button';
const loadingTask = getDocument(documentUrl);
const loadingTask = getDocument({url: documentUrl, isEvalSupported: false});

const zoomSelect = document.createElement('select');
zoomSelect.className = 'zoom-select';
Expand Down

0 comments on commit c0d9d1c

Please sign in to comment.