Skip to content

Commit

Permalink
fix issue of generate route bg
Browse files Browse the repository at this point in the history
  • Loading branch information
alok-mishra143 committed Oct 20, 2024
1 parent c055836 commit 3826cef
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/app/(dashboard)/generate/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import Flashcard from "@/components/core/flash-card";

export default async function GeneratePage() {

return (
<div className="page-container bg-slate-50">
<Flashcard />
</div>
)
}
return (
<div className="page-container bg-slate-50 dark:bg-black">
<Flashcard />
</div>
);
}

0 comments on commit 3826cef

Please sign in to comment.