Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Dec 11, 2024
1 parent 2b412cf commit 0b42567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/box-control/input-control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function BoxInputControl( {
onChange( nextValues );
};

const handleRewOnValueChange = ( next?: string ) => {
const handleRawOnValueChange = ( next?: string ) => {
const nextValues = { ...values };
defaultValuesToModify.forEach( ( modifiedSide ) => {
nextValues[ modifiedSide ] = next;
Expand Down Expand Up @@ -253,7 +253,7 @@ export default function BoxInputControl( {
presetKey,
presets
);
handleRewOnValueChange( newValue );
handleRawOnValueChange( newValue );
} }
withInputField={ false }
aria-valuenow={
Expand Down

0 comments on commit 0b42567

Please sign in to comment.