1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 01:01:17 -04:00

remove unnecessary memos

This commit is contained in:
2022-06-22 19:53:08 -04:00
parent 25b2e7133b
commit e782f1a8e8
13 changed files with 135 additions and 140 deletions

View File

@@ -1,4 +1,3 @@
import { memo } from "react";
import HCaptcha from "@hcaptcha/react-hcaptcha";
import { useHasMounted } from "../../hooks/use-has-mounted";
import { useTheme } from "../../hooks/use-theme";
@@ -40,4 +39,4 @@ const Captcha = ({ size = "normal", theme, className, ...rest }: CaptchaProps) =
);
};
export default memo(Captcha);
export default Captcha;