@flozy/editor 1.5.3 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,7 +29,7 @@ const TextSize = ({
29
29
  };
30
30
  const combinedOldVal = getSizeVal();
31
31
  const onIncreaseSize = () => {
32
- let inc = combinedOldVal || 0 + 1;
32
+ let inc = (combinedOldVal || 0) + 1;
33
33
  inc = inc > 200 ? 200 : inc;
34
34
  addMarkData(editor, {
35
35
  format,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"