diff --git a/packages/ui/src/components/info/ReleaseNotesInfo.tsx b/packages/ui/src/components/info/ReleaseNotesInfo.tsx index 4f038c8d5..82ae1e937 100644 --- a/packages/ui/src/components/info/ReleaseNotesInfo.tsx +++ b/packages/ui/src/components/info/ReleaseNotesInfo.tsx @@ -4,6 +4,7 @@ import { } from "@block-wallet/background/controllers/PreferencesController" import { FC } from "react" import { useHistory } from "react-router-dom" +import { LINKS } from "../../util/constants" import { ButtonWithLoading } from "../button/ButtonWithLoading" import PopupFooter from "../popup/PopupFooter" import PopupLayout from "../popup/PopupLayout" @@ -69,6 +70,17 @@ const ReleaseNotesInfo: FC = ({ ) })} + + There's more.{" "} + + Find full release notes here. + + diff --git a/packages/ui/src/util/constants.ts b/packages/ui/src/util/constants.ts index 5c67d16c0..208e8cfa3 100644 --- a/packages/ui/src/util/constants.ts +++ b/packages/ui/src/util/constants.ts @@ -57,5 +57,6 @@ export const LINKS = { MALICIOUS_DAPPS: "https://help.blockwallet.io/hc/en-us/articles/10374731466769", BRIDGES: "https://help.blockwallet.io/hc/en-us/articles/10669678195473", + CHANGELOG: "https://bit.ly/bw-release" }, }