diff --git a/apps/remix/app/components/general/envelope-editor/recipient-row.tsx b/apps/remix/app/components/general/envelope-editor/recipient-row.tsx
index 338e02b35..37a237136 100644
--- a/apps/remix/app/components/general/envelope-editor/recipient-row.tsx
+++ b/apps/remix/app/components/general/envelope-editor/recipient-row.tsx
@@ -11,7 +11,6 @@ import { RecipientRoleSelect } from '@documenso/ui/components/recipient/recipien
import { cn } from '@documenso/ui/lib/utils';
import { Button } from '@documenso/ui/primitives/button';
import { FormControl, FormField, FormItem, FormMessage } from '@documenso/ui/primitives/form/form';
-import { Input } from '@documenso/ui/primitives/input';
import type { DraggableProvidedDragHandleProps } from '@hello-pangea/dnd';
import { useLingui } from '@lingui/react/macro';
import { EnvelopeType, type RecipientRole } from '@prisma/client';
@@ -23,9 +22,7 @@ type TEditorSigner = TEditorRecipientsFormSchema['signers'][number];
export type RecipientRowProps = {
signerIndex: number;
signer: TEditorSigner;
- stepCount: number;
isSequential: boolean;
- isGrouped: boolean;
isInputDisabled: boolean;
canBeModified: boolean;
isRemoveDisabled: boolean;
@@ -33,7 +30,6 @@ export type RecipientRowProps = {
dragHandleProps?: DraggableProvidedDragHandleProps | null;
recipientSuggestions: RecipientAutoCompleteOption[];
isLoadingSuggestions: boolean;
- onSigningOrderChange: (signerIndex: number, value: string) => void;
onRoleChange: (signerIndex: number, role: RecipientRole) => void;
onRemove: (signerIndex: number) => void;
onAutoCompleteSelect: (signerIndex: number, suggestion: RecipientAutoCompleteOption) => void;
@@ -43,9 +39,7 @@ export type RecipientRowProps = {
export const RecipientRow = ({
signerIndex,
signer,
- stepCount,
isSequential,
- isGrouped,
isInputDisabled,
canBeModified,
isRemoveDisabled,
@@ -53,7 +47,6 @@ export const RecipientRow = ({
dragHandleProps,
recipientSuggestions,
isLoadingSuggestions,
- onSigningOrderChange,
onRoleChange,
onRemove,
onAutoCompleteSelect,
@@ -81,52 +74,19 @@ export const RecipientRow = ({