Enable ESLint no-empty-pattern rule (#4343)

# Description of Changes
Enable ESLint [no-empty-pattern
rule](https://eslint.org/docs/latest/rules/no-empty-pattern)
This commit is contained in:
James Brunton
2025-09-05 10:55:03 +01:00
committed by GitHub
parent 94e8f603ff
commit b9cf7e7820
2 changed files with 1 additions and 3 deletions

View File

@@ -17,8 +17,7 @@ import {
getActiveNavButton,
} from './quickAccessBar/QuickAccessBar';
const QuickAccessBar = forwardRef<HTMLDivElement>(({
}, ref) => {
const QuickAccessBar = forwardRef<HTMLDivElement>((_, ref) => {
const { t } = useTranslation();
const { isRainbowMode } = useRainbowThemeContext();
const { openFilesModal, isFilesModalOpen } = useFilesModalContext();