Skip to content

Commit 18a8fb9

Browse files
authored
fix code styling (#581)
1 parent 39fa0e4 commit 18a8fb9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/content.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,10 @@ function pasteCode(code: string) {
248248
}
249249

250250
for (const inputBox of inputBoxes) {
251-
if ((!inputBox.value || /^(\d{6}|\d{8})$/.test(inputBox.value)) && inputBox.type !== "password") {
251+
if (
252+
(!inputBox.value || /^(\d{6}|\d{8})$/.test(inputBox.value)) &&
253+
inputBox.type !== "password"
254+
) {
252255
inputBox.value = code;
253256
fireInputEvents(inputBox);
254257
return;

0 commit comments

Comments
 (0)