Skip to content

Commit 2f92811

Browse files
committed
fix: linting issues
1 parent bb5352d commit 2f92811

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ops.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ export function pack(
132132
);
133133
o += 4;
134134

135-
const alignX = l.alignX === "right"
135+
let alignX = l.alignX === "right"
136136
? 1
137137
: l.alignX === "center"
138138
? 2
139139
: 0;
140140

141-
const alignY = l.alignY === "bottom"
141+
let alignY = l.alignY === "bottom"
142142
? 1
143143
: l.alignY === "center"
144144
? 2

0 commit comments

Comments
 (0)