Update MarkAsViewed.ts

This commit is contained in:
Tom Moor
2022-11-01 18:42:59 -07:00
committed by GitHub
parent d4cac4983c
commit 3cb0b88f0f

View File

@@ -4,7 +4,7 @@ import Document from "~/models/Document";
const MARK_AS_VIEWED_AFTER = 3 * 1000;
type Props = {
document: Document;
children: JSX.Element;
children?: JSX.Element;
};
function MarkAsViewed(props: Props) {