Trailing commas

This commit is contained in:
James Brunton 2025-09-16 15:10:08 +01:00
parent 37977a2f18
commit 7d934bc440

View File

@ -6,16 +6,16 @@ export const useRotateTips = (): TooltipContent => {
return { return {
header: { header: {
title: t("rotate.tooltip.header.title", "Rotate Settings Overview") title: t("rotate.tooltip.header.title", "Rotate Settings Overview"),
}, },
tips: [ 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"), 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."),
} },
] ],
}; };
}; };