Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
},
"dependencies": {
"clsx": "^2.1.1",
"diff": "^9.0.0",
"dompurify": "^3.4.2",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"jszip": "^3.10.1",
"juice": "^11.1.1",
"lucide-react": "^1.14.0",
Expand All @@ -35,6 +37,7 @@
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.9.0",
"tailwindcss": "^4",
"typescript": "^5",
Expand Down
2 changes: 2 additions & 0 deletions next/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Toolbar } from "@/components/toolbar";
import { EditorPane } from "@/components/editor-pane";
import { PreviewPane } from "@/components/preview-pane";
import { TasksSidebar } from "@/components/tasks-sidebar";
import { HistoryPane } from "@/components/history-pane";
import { WelcomeModal } from "@/components/welcome-modal";
import { SettingsModal, type SectionId } from "@/components/settings-modal";
import { ConvertChip } from "@/components/convert-chip";
Expand Down Expand Up @@ -82,6 +83,7 @@ export default function Home() {
style={{ borderTop: "1px solid var(--line-faint)" }}
>
<TasksSidebar />
<HistoryPane />
<div className="relative flex flex-1 min-w-0">
{layoutMode !== "preview" && (
<section
Expand Down
Loading
Loading