Merge branch 'main' into repo-sync
This commit is contained in:
@@ -28,6 +28,10 @@ export const LanguagePicker = ({ variant }: Props) => {
|
||||
</summary>
|
||||
<div>
|
||||
{langs.map((lang) => {
|
||||
if (lang.wip) {
|
||||
return null
|
||||
}
|
||||
|
||||
return (
|
||||
<Link
|
||||
key={lang.code}
|
||||
@@ -71,6 +75,10 @@ export const LanguagePicker = ({ variant }: Props) => {
|
||||
</summary>
|
||||
<Dropdown.Menu direction="sw">
|
||||
{langs.map((lang) => {
|
||||
if (lang.wip) {
|
||||
return null
|
||||
}
|
||||
|
||||
return (
|
||||
<Dropdown.Item key={lang.code}>
|
||||
<Link href={router.asPath} locale={lang.code} disableClientTransition={true}>
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
- <code><span style="text-transform: uppercase">{{operation.verb}}</span> {{operation.requestPath}}</code> <a href="#{{operation.externalDocs.hash}}">{{operation.summary}}</a>
|
||||
Reference in New Issue
Block a user