Hi I am using the experimental PDF function. I have used a timer and the timer has the formula in the ontimerstart property. The whole thing was working correctly until now. The pdf get's generated but all of the controls are enlarged and are missing the rest of the controls towards the bottom of the page. Any ideas why this randomly start happening?

Formula in the timer ontimerstart property:
Set(
VarPDF,
PDF(
Container4,
{
ExpandContainers: true,
Orientation: PaperOrientation.Portrait
//Size: PaperSize.A4
}
)
);
Set(
varFileName,
Concatenate(Text(varRecord.ID),
".pdf")
);
create_mealschecklistpdf.Run(
{
file: {
name: varFileName,
contentBytes: VarPDF
}
}
);