Skip to content

Commit 61372d3

Browse files
committed
wip
1 parent ec685a5 commit 61372d3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/app/layouts/default/header/menus/main-menu/dropdown/dropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export function MenuItem({label, url, local = undefined}: {
3737
);
3838
}
3939

40-
function OptionalWrapper({isWrapper = true, children}: {
41-
isWrapper?: boolean;
40+
function OptionalWrapper({isWrapper, children}: {
41+
isWrapper: boolean;
4242
children?: React.ReactNode;
4343
}) {
4444
return isWrapper ? (
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
describe('layouts/default/main-menu', () => {
2+
it('recognizes current path', () => {
3+
4+
});
5+
});

0 commit comments

Comments
 (0)