Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
fixed console warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sdadn committed Apr 16, 2024
1 parent 844a469 commit ad12ceb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ const PanningExample = () => {

return (
<>
<Button icon={<IconLeft />} isIconOnly onClick={() => dispatch({ type: 'panLeft' })} />
<Button icon={<IconRight />} isIconOnly onClick={() => dispatch({ type: 'panRight' })} />
<Button icon={<IconLeft />} text="pan left" isIconOnly onClick={() => dispatch({ type: 'panLeft' })} />
<Button icon={<IconRight />} text="pan right" isIconOnly onClick={() => dispatch({ type: 'panRight' })} />
<div id="panning-example" />
</>
);
Expand Down

0 comments on commit ad12ceb

Please sign in to comment.