From c54a15de116f5d8d140c68fa4071407653bc5de1 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 24 Dec 2023 21:05:43 +0800 Subject: [PATCH] Disable memo for Icon Too many memoization going on here --- src/components/icon.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/icon.jsx b/src/components/icon.jsx index a5fecc5f..559ac5db 100644 --- a/src/components/icon.jsx +++ b/src/components/icon.jsx @@ -1,4 +1,3 @@ -import { memo } from 'preact/compat'; import { useEffect, useRef, useState } from 'preact/hooks'; const SIZES = { @@ -165,4 +164,4 @@ function Icon({ ); } -export default memo(Icon); +export default Icon;