Skip to content

Commit 4d23ecb

Browse files
committed
Fix ESLint comment indentation in Sidebar.jsx
Adjust the indentation of an `// eslint-disable-next-line react-hooks/immutability` comment in src/components/Sidebar/Sidebar.jsx to match the file's formatting. This is a whitespace-only change with no functional impact.
1 parent fae3e86 commit 4d23ecb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Sidebar/Sidebar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default function Sidebar({ className = "", pages, currentPage }) {
6969

7070
{pages.map((page, index) => {
7171
const displayGroup = group !== page.group && page.group !== "-";
72-
// eslint-disable-next-line react-hooks/immutability
72+
// eslint-disable-next-line react-hooks/immutability
7373
group = page.group;
7474

7575
return (

0 commit comments

Comments
 (0)