From 7d934bc44088d3685725ceaca57576b8fd3268f6 Mon Sep 17 00:00:00 2001 From: James Brunton Date: Tue, 16 Sep 2025 15:10:08 +0100 Subject: [PATCH] Trailing commas --- frontend/src/components/tooltips/useRotateTips.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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."), + }, + ], }; };