Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-drozd-it committed Jul 15, 2024
1 parent ad02f22 commit f02ddae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/drawing/DrawingBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const DrawingBoard: React.FC = () => {

const [ mode, setMode ] = useState<string>([ 'brush', 'text', 'eraser' ][0]);
const [ size, ] = useState<number>(5);
const [ colorsMenu, ] = useState<string>([ 'Row', 'Menu1', 'Menu2' ][0]);
const [ colorsMenu, ] = useState<string>([ 'Row', 'Menu', 'Menu2' ][0]);
const [ colors, ] = useState<string[]>([ 'black', 'white', 'gray', 'green', 'yellow', 'orange', 'red', 'blue', 'purple' ]);
const [ color, setColor ] = useState<string>(colors[0]);
const [ bgColors, ] = useState<string[]>([ 'lightgray', 'white', 'black' ]);
Expand Down

0 comments on commit f02ddae

Please sign in to comment.