Commit 8658060 1 parent bf3144f commit 8658060 Copy full SHA for 8658060
File tree 4 files changed +6
-11
lines changed
4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const items: Item[] = [
26
26
27
27
export default function Demo ( ) {
28
28
return (
29
- < TableContainer >
29
+ < TableContainer resizable >
30
30
< TableRoot aria-label = "Files" >
31
31
< TableHeader columns = { columns } >
32
32
< TableColumn id = "name" isRowHeader allowsResizing >
Original file line number Diff line number Diff line change 1
- import { type PageTree } from "fumadocs-core/server" ;
1
+ // import { type PageTree } from "fumadocs-core/server";
2
2
import { kekabCaseToTitle } from "@/lib/string" ;
3
3
import { source } from "@/app/source" ;
4
4
import { SearchCommandClient } from "./search-command-client" ;
@@ -33,10 +33,9 @@ export function SearchCommand() {
33
33
items : pages . filter ( ( item ) => item . url . split ( "/" ) [ 2 ] === category ) ,
34
34
} ) ) ;
35
35
36
- console . log ( typeof source . pageTree . children ) ;
37
- const newItems : PageTree . Node [ ] = source . pageTree . children ;
38
- newItems . forEach ( ( item ) => {
39
- console . log ( item ) ;
40
- } ) ;
36
+ // const newItems: PageTree.Node[] = source.pageTree.children;
37
+ // newItems.forEach((item) => {
38
+ // console.log(item);
39
+ // });
41
40
return < SearchCommandClient items = { items } /> ;
42
41
}
Original file line number Diff line number Diff line change @@ -18,12 +18,9 @@ export const createDynamicComponent = <Props extends {}>(
18
18
const Component = ( props : Props ) => {
19
19
const { currentTheme } = useCurrentTheme ( ) ;
20
20
const { primitives : localPrimitives } = useLocalPrimitives ( ) ;
21
- console . log ( "local primitives" , localPrimitives ) ;
22
21
const currentThemePrimitive = currentTheme ?. primitives ?. [ primitiveName ] ;
23
22
const localPrimitive = localPrimitives [ primitiveName ] ;
24
- // console.log("CURRENT THEME LOCAL PRIMITIVE", currentThemePrimitive);
25
23
const resolvedPrimitive = localPrimitive ?? currentThemePrimitive ;
26
- // console.log("RESOLVED PRIMITIVE", resolvedPrimitive);
27
24
const shouldWrapWithSuspense = true ;
28
25
29
26
if ( ! resolvedPrimitive ) {
Original file line number Diff line number Diff line change @@ -112,7 +112,6 @@ const TableRoot = ({
112
112
globalAction = { ! ! onRowAction }
113
113
>
114
114
< TableContainer variant = { variant } className = { className } style = { style } >
115
- { " " }
116
115
{ /* TODO: FIX THIS SHIT */ }
117
116
< AriaTable
118
117
className = { root ( { variant } ) }
You can’t perform that action at this time.
0 commit comments