File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { trackCustomEvent } from "@/lib/utils/matomo"
11
11
12
12
import docLinks from "@/data/developer-docs-links.yaml"
13
13
14
- import { Flex , Stack } from "./ui/flex"
14
+ import { Stack } from "./ui/flex"
15
15
import { LinkBox , LinkOverlay } from "./ui/link-box"
16
16
17
17
import { useRtlFlip } from "@/hooks/useRtlFlip"
@@ -125,9 +125,9 @@ const DocsNav = ({ contentNotTranslated }: DocsNavProps) => {
125
125
currentIndex + 1 < docsArray . length ? docsArray [ currentIndex + 1 ] : null
126
126
127
127
return (
128
- < Flex
128
+ < nav
129
129
className = { cn (
130
- "flex-col-reverse md:flex-row lg:flex-col-reverse xl:flex-row" ,
130
+ "flex flex -col-reverse md:flex-row lg:flex-col-reverse xl:flex-row" ,
131
131
"mt-8 justify-between gap-4" ,
132
132
"items-center md:items-start"
133
133
) }
@@ -150,7 +150,7 @@ const DocsNav = ({ contentNotTranslated }: DocsNavProps) => {
150
150
) : (
151
151
< div className = "hidden flex-grow xl:block" > </ div >
152
152
) }
153
- </ Flex >
153
+ </ nav >
154
154
)
155
155
}
156
156
You can’t perform that action at this time.
0 commit comments