Minor variable naming change

This commit is contained in:
Rodel Calasagsag 2023-08-17 08:54:21 +08:00
parent 0d6f1969ed
commit 6511664ba3
1 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ module.exports = ( { core } ) => {
dateStyle: 'full', dateStyle: 'full',
} ).format( Date.now() ); } ).format( Date.now() );
const block = [ const blocks = [
{ {
type: 'divider', type: 'divider',
}, },
@ -71,7 +71,7 @@ module.exports = ( { core } ) => {
}, },
]; ];
return block; return blocks;
}; };
const create_blockGroup_nightlySite = () => { const create_blockGroup_nightlySite = () => {
@ -79,7 +79,7 @@ module.exports = ( { core } ) => {
const emoji_E2E = selectEmoji( E2E_RESULT ); const emoji_E2E = selectEmoji( E2E_RESULT );
const emoji_k6 = selectEmoji( k6_RESULT ); const emoji_k6 = selectEmoji( k6_RESULT );
const block = [ const blocks = [
{ {
type: 'section', type: 'section',
text: { text: {
@ -101,7 +101,7 @@ module.exports = ( { core } ) => {
}, },
]; ];
return block; return blocks;
}; };
const blockGroup_header = create_blockGroup_header(); const blockGroup_header = create_blockGroup_header();