Skip to content

Commit

Permalink
lint: minor type hint change
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jul 9, 2024
1 parent 6b4b43e commit 3bfaff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/display/PdfDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SCALES = [0.5, 0.75, 1.0, 1.25, 1.5, 2.0];
const INITIAL_SCALE = 2;
const MAX_SCALE = SCALES.length - 1;

const styles: { [x: string]: CSSProperties } = {
const styles: Record<string, CSSProperties> = {
container: {
width: "calc(90vw - 32px)",
minWidth: "660px",
Expand Down

0 comments on commit 3bfaff1

Please sign in to comment.