Skip to content

Commit 7d6c8b5

Browse files
committed
add banner
1 parent 4472dcb commit 7d6c8b5

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

apps/dashboard/src/@/components/misc/AnnouncementBanner.tsx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import Link from "next/link";
55
import { Button } from "@/components/ui/button";
66
import { useLocalStorage } from "@/hooks/useLocalStorage";
77

8-
// biome-ignore lint/correctness/noUnusedVariables: banner is toggled on-demand via API content changes
98
function AnnouncementBannerUI(props: {
109
href: string;
1110
label: string;
@@ -45,12 +44,11 @@ function AnnouncementBannerUI(props: {
4544
}
4645

4746
export function AnnouncementBanner() {
48-
// return (
49-
// <AnnouncementBannerUI
50-
// href="https://blog.thirdweb.com/the-fastest-way-to-build-web3-applications/"
51-
// label="We have re-branded our Engine, Payments, and Connect products. Please read the full blog post for details on changes"
52-
// trackingLabel="product-rebrand"
53-
// />
54-
// );
55-
return null;
47+
return (
48+
<AnnouncementBannerUI
49+
href="https://blog.thirdweb.com/changelog/project-view-update-wallets/"
50+
label="Project View Update - Wallets"
51+
trackingLabel="project-view-update-wallets"
52+
/>
53+
);
5654
}

0 commit comments

Comments
 (0)