Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: default docs location for table, ranger, and virtual #306

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/client.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="vinxi/types/client" />
import { hydrateRoot } from 'react-dom/client'
import { StartClient } from '@tanstack/start'
import { createRouter } from './router'
Expand Down
2 changes: 1 addition & 1 deletion app/libraries/ranger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const rangerProject: Library = {
colorTo: 'to-pink-500',
textColor: 'text-pink-500',
frameworks: ['react'],
defaultDocs: 'framework/react/overview',
defaultDocs: 'overview',
scarfId: 'dd278e06-bb3f-420c-85c6-6e42d14d8f61',
}
2 changes: 1 addition & 1 deletion app/libraries/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const tableProject: Library = {
'vanilla',
],
scarfId: 'dc8b39e1-3fe9-4f3a-8e56-d4e2cf420a9e',
defaultDocs: 'framework/react/overview',
defaultDocs: 'introduction',
handleRedirects: (href) => {
handleRedirects(
reactTableV7List,
Expand Down
2 changes: 1 addition & 1 deletion app/libraries/virtual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export const virtualProject: Library = {
colorTo: 'to-violet-600',
textColor: 'text-purple-600',
frameworks: ['react', 'solid', 'vue', 'svelte', 'lit', 'angular'],
defaultDocs: 'framework/react/overview',
defaultDocs: 'introduction',
scarfId: '32372eb1-91e0-48e7-8df1-4808a7be6b94',
}
1 change: 1 addition & 0 deletions app/ssr.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="vinxi/types/server" />
import {
createStartHandler,
defaultStreamHandler,
Expand Down
Loading