The '<クライアントアクション名>' Client Action calls several Server Actions.To avoid performance issues, group them all in a single Server Action and call it instead.
Iterating '<server action>' generates several requests to the server.To avoid performance issues, execute the For Each iteration inside another Server Action and use it instead.
'<OnInitialize action | OnReady action>' contains accesses to the local storage or server, which delays the screen's render.To avoid performance issues, use Aggregates or Data Actions instead.
'<OnInitialize action | OnReady action>' contains accesses to the local storage or server, which delays the block's render.To avoid performance issues, use Aggregates or Data Actions instead.
'<JavaScript element>' seems to include a JavaScript library, as it contains a large amount of code.To use an external JavaScript library, add it as a Script element instead.