mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
chore: bump fumadocs (#4144)
This commit is contained in:
@@ -10,7 +10,7 @@ import {
|
||||
TableRow,
|
||||
} from "./ui/table";
|
||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "./ui/tabs";
|
||||
import { ReactNode } from "react";
|
||||
import { JSX, ReactNode } from "react";
|
||||
import { Link } from "lucide-react";
|
||||
import { Button } from "./ui/button";
|
||||
import { cn } from "@/lib/utils";
|
||||
@@ -396,7 +396,8 @@ function parseCode(children: JSX.Element) {
|
||||
.map((x: any) =>
|
||||
x === "\n" ? { props: { children: { props: { children: "\n" } } } } : x,
|
||||
)
|
||||
.map((x: any) => x.props.children);
|
||||
.map((x: any) => x.props.children)
|
||||
.filter((x: any) => x != null);
|
||||
const arrayOfCode: string[] = arrayOfJSXCode
|
||||
.flatMap(
|
||||
(
|
||||
|
||||
@@ -35,7 +35,7 @@ export default function ArticleLayout() {
|
||||
const cts = group === "docs" ? contents : examples;
|
||||
|
||||
return (
|
||||
<div className={cn("fixed top-0")}>
|
||||
<div className={cn("fixed start-0 top-0")}>
|
||||
<aside
|
||||
className={cn(
|
||||
"md:transition-all",
|
||||
|
||||
Reference in New Issue
Block a user