From 8350b4383ce8d17993b56dec17f655d001cfd644 Mon Sep 17 00:00:00 2001 From: Darren Eng Date: Sun, 26 Dec 2021 16:06:48 -0800 Subject: [PATCH] update comment edge is now supported https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details --- src/FaqPage.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/FaqPage.tsx b/src/FaqPage.tsx index d330639..37f6c85 100644 --- a/src/FaqPage.tsx +++ b/src/FaqPage.tsx @@ -52,9 +52,8 @@ type FAQProps = { function FAQ({ question, answer }: FAQProps) { const [isOpen, setIsOpen] = React.useState(true); - // Note that there is a details and summary component, - // but Edge doesn't have support and no way to animate - // transitions. Default cursor is wrong too. + // Note that there is a
and component, but there is no + // way to animate transitions. The default cursor is also wrong. return ( <>