mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
chore: tidy code
This commit is contained in:
@ -12,10 +12,8 @@ import { Card, CardContent } from '../card';
|
|||||||
import { FRIENDLY_FIELD_TYPE } from './types';
|
import { FRIENDLY_FIELD_TYPE } from './types';
|
||||||
import type { Prisma } from '.prisma/client';
|
import type { Prisma } from '.prisma/client';
|
||||||
|
|
||||||
type Field = Prisma.FieldGetPayload<null>;
|
|
||||||
|
|
||||||
export type FieldItemProps = {
|
export type FieldItemProps = {
|
||||||
field: Field;
|
field: Prisma.FieldGetPayload<null>;
|
||||||
recipients: Prisma.RecipientGetPayload<null>[];
|
recipients: Prisma.RecipientGetPayload<null>[];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -44,7 +42,6 @@ export const SubjectFieldItem = ({ field, recipients }: FieldItemProps) => {
|
|||||||
const top = $page.getBoundingClientRect().top + window.scrollY;
|
const top = $page.getBoundingClientRect().top + window.scrollY;
|
||||||
const left = $page.getBoundingClientRect().left + window.scrollX;
|
const left = $page.getBoundingClientRect().left + window.scrollX;
|
||||||
|
|
||||||
// X and Y are percentages of the page's height and width
|
|
||||||
const pageX = (Number(field.positionX) / 100) * width + left;
|
const pageX = (Number(field.positionX) / 100) * width + left;
|
||||||
const pageY = (Number(field.positionY) / 100) * height + top;
|
const pageY = (Number(field.positionY) / 100) * height + top;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user