Fix eslint

This commit is contained in:
0x1eef 2024-04-30 01:05:48 -03:00
parent 0fb529a7bf
commit 8e7fc9d6d5
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@ module.exports = {
"@typescript-eslint/no-redeclare": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/no-var-requires": 0,
"no-return-assign": 0,
"no-useless-return": 0,
"quotes": 0,

View file

@ -11,7 +11,7 @@ type Props = {
locale: Quran.Locale;
surahs: Quran.Surah[];
t: TFunction;
}
};
export function SurahIndex({ locale, surahs, t }: Props) {
const [theme, setTheme] = useTheme();