Skip to content

Commit cff4d5e

Browse files
committed
Fix linter
1 parent 9fe825e commit cff4d5e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const eslintConfig = [
1414
{
1515
files: ["packages/next-app/**/*"],
1616
rules: {
17-
"@typescript-eslint/no-explicit-any": "off",
17+
"@typescript-eslint/no-explicit-any": "off"
1818
},
1919
},
2020
];

packages/private-captcha-react/src/CaptchaWidget.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import React, { useEffect, useRef, useState } from 'react';
44
import { CaptchaWidget } from '@private-captcha/private-captcha-js-core';
55

66
type CaptchaEventDetail = {
7+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
78
widget: any;
89
element: HTMLElement;
910
};

0 commit comments

Comments
 (0)