chore: update file name in import

This commit is contained in:
Catalin Pit
2025-09-01 12:38:15 +03:00
parent 9cbbdfb127
commit 38483bb88c
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import { deletedAccountServiceAccount } from '@documenso/lib/server-only/user/se
import { prisma } from '@documenso/prisma';
import { DocumentStatus } from '@documenso/prisma/client';
type MoveDocumentsOptions = {
type HandleDocumentOwnershipOnDeletionOptions = {
documentIds: number[];
organisationOwnerId: number;
};
@ -10,7 +10,7 @@ type MoveDocumentsOptions = {
export const handleDocumentOwnershipOnDeletion = async ({
documentIds,
organisationOwnerId,
}: MoveDocumentsOptions) => {
}: HandleDocumentOwnershipOnDeletionOptions) => {
if (documentIds.length === 0) {
return;
}