Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion src/pages/Share.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function ShareNote() {
>
<div
className={clsx(
"prose prose-sm dark:prose-invert editor-font font-normal text-xl p-4 relative h-[calc(100vh-100px)] sm:h-[calc(100vh-15rem)] w-full point-bg overflow-hidden overflow-y-auto max-w-full"
"prose prose-sm dark:prose-invert editor-font font-normal text-xl p-4 relative h-[calc(100vh-100px)] sm:h-[calc(100vh-15rem)] w-full overflow-hidden overflow-y-auto max-w-full"
)}
>
{isValidNoteForShare ? (
Expand Down
1 change: 1 addition & 0 deletions src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export type Note = {
encrypted: boolean;
editedAt: number;
syncAt?: number;
meta?: Record<string, unknown>;
};
Loading