Skip to content

Commit

Permalink
fix: label name
Browse files Browse the repository at this point in the history
  • Loading branch information
im3dabasia committed Jan 6, 2025
1 parent f3012df commit 9fcf9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/box-control/linked-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function LinkedButton( {
isLinked,
...props
}: { isLinked?: boolean } & React.ComponentProps< typeof Button > ) {
const label = isLinked ? __( 'Unlink sides44' ) : __( 'Link sides' );
const label = isLinked ? __( 'Unlink sides' ) : __( 'Link sides' );

return (
<Button
Expand Down

0 comments on commit 9fcf9a8

Please sign in to comment.