From 392aaa76f49464e7ee08b4440ac3abc64d83ecde Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 25 Jan 2023 22:52:49 -0800 Subject: [PATCH] Fix destination of Learn more button --- components/UpdateToast/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/UpdateToast/index.tsx b/components/UpdateToast/index.tsx index 29403e04..51b6d009 100644 --- a/components/UpdateToast/index.tsx +++ b/components/UpdateToast/index.tsx @@ -42,7 +42,7 @@ const UpdateToast = ({ } function handleButtonClicked() { - window.open('/about', '_blank') + window.open('/updates', '_blank') setToastCookie() onActionClicked() }