mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 04:31:39 +10:00
🧹🚧DOC-97 DOC-19
This commit is contained in:
@ -9,7 +9,6 @@ import { DocumentStatus } from "@prisma/client";
|
||||
import {
|
||||
InformationCircleIcon,
|
||||
PaperAirplaneIcon,
|
||||
UserPlusIcon,
|
||||
UsersIcon,
|
||||
} from "@heroicons/react/24/outline";
|
||||
import { getDocument } from "@documenso/lib/query";
|
||||
@ -126,7 +125,7 @@ export async function getServerSideProps(context: any) {
|
||||
|
||||
return {
|
||||
props: {
|
||||
document: document,
|
||||
document: JSON.parse(JSON.stringify(document)),
|
||||
},
|
||||
};
|
||||
} catch (error) {
|
||||
|
||||
@ -69,7 +69,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
||||
className="mr-2"
|
||||
href={breadcrumbItems[1].href}
|
||||
>
|
||||
Customize Document
|
||||
Edit Document
|
||||
</Button>
|
||||
<Button
|
||||
className="min-w-[125px]"
|
||||
@ -431,7 +431,7 @@ export async function getServerSideProps(context: any) {
|
||||
|
||||
return {
|
||||
props: {
|
||||
document: document,
|
||||
document: JSON.parse(JSON.stringify(document)),
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user