Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Merge pull request #377 from openchatai/dashboard/minor-polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
faltawy authored Dec 7, 2023
2 parents 5d143e2 + 199af78 commit 423639b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Pen, Plus, Trash2 } from "lucide-react";
import { cn } from "@/lib/utils";
import _ from "lodash";
import { Label } from "@/components/ui/label";
import { SwaggerForm } from "./form";
import { methodVariants } from "./MethodRenderer";
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions dashboard/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import { Tv2 } from "lucide-react";
import { IS_DEV } from "@/lib/consts";
import { SearchModal } from "./(main)/_parts/SearchModal";
import React from "react";
import { JotaiProvider } from "./_store/JotaiProvider";
import { SWRProvider } from "./swr-provider";
import { Toaster } from "@/components/ui/toaster";
import { HandleOnComplete } from "@/lib/router-events";
import { TopLoader } from "@/lib/Toploader";
import dynamic from "next/dynamic";
import { JotaiProvider } from "./jotai-provider";

const Confetti = dynamic(() => import("@/components/domain/confetti-canvas"), {
ssr: false,
Expand Down Expand Up @@ -39,7 +39,7 @@ export default function RootLayout({
<body
className={cn(
opensans.className,
"h-screen min-h-screen w-screen overflow-hidden scroll-smooth bg-background text-accent-foreground antialiased",
"h-screen min-h-[100dvh] max-h-[100dvh] w-screen overflow-hidden scroll-smooth bg-background text-accent-foreground antialiased",
IS_DEV && "debug-screens",
)}
>
Expand Down

0 comments on commit 423639b

Please sign in to comment.