Skip to content

Commit

Permalink
docs(suspensive.org): update meta
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Feb 22, 2025
1 parent 7143e33 commit 396bc04
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
3 changes: 3 additions & 0 deletions docs/suspensive.org/src/content/en/docs/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ export default {
type: 'separator',
title: 'More',
},
'migrate-to-v3': {
title: 'Migrating to v3',
},
'migrate-to-v2': {
title: 'Migrating to v2',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default {
'tanstack-query-compatibility': {
title: 'Support both TanStack Query v4 and 5',
},
'migrate-to-v3': { title: 'Migrating to v3' },
'migrate-to-v2': { title: 'Migrating to v2' },
'--- API Reference': {
type: 'separator',
Expand Down
1 change: 1 addition & 0 deletions docs/suspensive.org/src/content/en/docs/react/_meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type { MetaRecord } from 'nextra'
export default {
motivation: { title: 'Why need to use?' },
installation: { title: 'Installation' },
'migrate-to-v3': { title: 'Migrating to v3' },
'migrate-to-v2': { title: 'Migrating to v2' },
'--- API Reference': {
type: 'separator',
Expand Down
22 changes: 17 additions & 5 deletions docs/suspensive.org/src/content/ko/docs/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { MetaRecord } from 'nextra'
import type MetaEn from '../../en/docs/_meta'

export default {
'--- Packages': {
Expand All @@ -13,8 +14,19 @@ export default {
type: 'separator',
title: '더보기',
},
'migrate-to-v2': 'v2로 마이그레이션하기',
changelogs: 'Changelogs',
contributors: '기여자',
links: '관련 링크',
} satisfies MetaRecord
'migrate-to-v3': {
title: 'v3로 마이그레이션하기',
},
'migrate-to-v2': {
title: 'v2로 마이그레이션하기',
},
changelogs: {
title: 'Changelogs',
},
contributors: {
title: '기여자',
},
links: {
title: '관련 링크',
},
} satisfies typeof MetaEn satisfies MetaRecord
8 changes: 6 additions & 2 deletions docs/suspensive.org/src/content/ko/docs/react-query/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import type { MetaRecord } from 'nextra'
import type MetaEn from '../../../en/docs/react-query/_meta'

export default {
motivation: { title: '어떤 이유로 사용하나요?' },
installation: { title: '설치하기' },
'tanstack-query-compatibility': { title: 'TanStack Query v4, 5를 모두 지원' },
'tanstack-query-compatibility': {
title: 'TanStack Query v4, 5를 모두 지원',
},
'migrate-to-v3': { title: 'v3로 마이그레이션하기' },
'migrate-to-v2': { title: 'v2로 마이그레이션하기' },
'--- API Reference': {
type: 'separator',
Expand All @@ -23,4 +27,4 @@ export default {
PrefetchQuery: { title: '<PrefetchQuery/>' },
PrefetchInfiniteQuery: { title: '<PrefetchInfiniteQuery/>' },
QueryClientConsumer: { title: '<QueryClientConsumer/>' },
} satisfies MetaRecord
} satisfies typeof MetaEn satisfies MetaRecord
4 changes: 3 additions & 1 deletion docs/suspensive.org/src/content/ko/docs/react/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import type { MetaRecord } from 'nextra'
import type MetaEn from '../../../en/docs/react/_meta'

export default {
motivation: { title: '어떤 이유로 사용하나요?' },
installation: { title: '설치하기' },
'migrate-to-v3': { title: 'v3로 마이그레이션하기' },
'migrate-to-v2': { title: 'v2로 마이그레이션하기' },
'--- API Reference': {
type: 'separator',
Expand All @@ -15,4 +17,4 @@ export default {
ClientOnly: { title: '<ClientOnly/>' },
DefaultPropsProvider: { title: '<DefaultPropsProvider/>' },
wrap: { title: 'wrap' },
} satisfies MetaRecord
} satisfies typeof MetaEn satisfies MetaRecord

0 comments on commit 396bc04

Please sign in to comment.