diff --git a/frontend/src/components/tooltips/useRotateTips.ts b/frontend/src/components/tooltips/useRotateTips.ts index 4bea201e1..b7dfd57f3 100644 --- a/frontend/src/components/tooltips/useRotateTips.ts +++ b/frontend/src/components/tooltips/useRotateTips.ts @@ -6,16 +6,16 @@ export const useRotateTips = (): TooltipContent => { return { header: { - title: t("rotate.tooltip.header.title", "Rotate Settings Overview") + title: t("rotate.tooltip.header.title", "Rotate Settings Overview"), }, tips: [ { - description: t("rotate.tooltip.description.text", "Rotate your PDF pages clockwise or anticlockwise in 90-degree increments. All pages in the PDF will be rotated. The preview shows how your document will look after rotation.") + description: t("rotate.tooltip.description.text", "Rotate your PDF pages clockwise or anticlockwise in 90-degree increments. All pages in the PDF will be rotated. The preview shows how your document will look after rotation."), }, { title: t("rotate.tooltip.controls.title", "Controls"), - description: t("rotate.tooltip.controls.text", "Use the rotation buttons to adjust orientation. Left button rotates anticlockwise, right button rotates clockwise. Each click rotates by 90 degrees.") - } - ] + description: t("rotate.tooltip.controls.text", "Use the rotation buttons to adjust orientation. Left button rotates anticlockwise, right button rotates clockwise. Each click rotates by 90 degrees."), + }, + ], }; };