Skip to content

Commit

Permalink
release: 1.2.107 - Performance improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
surajair committed Oct 29, 2024
1 parent 521b145 commit bd1354d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Suraj Air",
"license": "BSD-3-Clause",
"homepage": "https://chaibuilder.com",
"version": "1.2.106",
"version": "1.2.107",
"type": "module",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useTranslation } from "react-i18next";

import { useHiddenBlockIds } from "../../../../../hooks";

const CollapseAllTooltip = forwardRef((props, ref: any) => {
const CollapseAllTooltip = forwardRef((_props, ref: any) => {
const { t } = useTranslation();

return (
Expand All @@ -29,7 +29,7 @@ const CollapseAllTooltip = forwardRef((props, ref: any) => {
);
});

const ExpandAllTooltip = forwardRef((props, ref: any) => {
const ExpandAllTooltip = forwardRef((_props, ref: any) => {
const { t } = useTranslation();

return (
Expand Down

0 comments on commit bd1354d

Please sign in to comment.