Skip to content

Commit

Permalink
Correct misbranded spelling of WonderBlocks
Browse files Browse the repository at this point in the history
  • Loading branch information
0aveRyan committed Jul 29, 2024
1 parent 8a18a63 commit c5e6067
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/pages/settings/wonderBlocksSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ const WonderBlocksSettings = () => {

const getWonderBlocksNoticeTitle = () => {
return wonderBlocks
? __( 'Wonder Blocks Enabled', 'wp-plugin-bluehost' )
: __( 'Wonder Blocks Disabled', 'wp-plugin-bluehost' );
? __( 'WonderBlocks Enabled', 'wp-plugin-bluehost' )
: __( 'WonderBlocks Disabled', 'wp-plugin-bluehost' );
};
const getWonderBlocksNoticeText = () => {
return wonderBlocks
? __(
'Create new content to see Wonder Blocks in action.',
'Create new content to see WonderBlocks in action.',
'wp-plugin-bluehost'
)
: __(
'Wonder Blocks will no longer display.',
'WonderBlocks will no longer display.',
'wp-plugin-bluehost'
);
};
Expand Down Expand Up @@ -78,9 +78,9 @@ const WonderBlocksSettings = () => {
<div className="nfd-flex nfd-flex-col nfd-gap-6">
<ToggleField
id="help-center-toggle"
label="Wonder Blocks"
label="WonderBlocks"
description={ __(
'Wonder Blocks provides a library of customizable block patterns and page templates.',
'WonderBlocks provides a library of customizable block patterns and page templates.',
'wp-plugin-bluehost'
) }
disabled={ wonderBlocksLocked }
Expand Down

0 comments on commit c5e6067

Please sign in to comment.