diff --git a/frontend/src/ts/elements/merch-banner.ts b/frontend/src/ts/elements/merch-banner.ts
index bcb10b7ae..57a6d55f6 100644
--- a/frontend/src/ts/elements/merch-banner.ts
+++ b/frontend/src/ts/elements/merch-banner.ts
@@ -1,6 +1,6 @@
import { z } from "zod";
import { LocalStorageWithSchema } from "../utils/local-storage-with-schema";
-import * as Notifications from "./notifications";
+// import * as Notifications from "./notifications";
const closed = new LocalStorageWithSchema({
key: "merchBannerClosed",
@@ -10,15 +10,15 @@ const closed = new LocalStorageWithSchema({
export function showIfNotClosedBefore(): void {
if (!closed.get()) {
- Notifications.addBanner(
- `Check out our merchandise, available at monkeytype.store`,
- 1,
- "./images/merch2.png",
- false,
- () => {
- closed.set(true);
- },
- true
- );
+ // Notifications.addBanner(
+ // `Check out our merchandise, available at monkeytype.store`,
+ // 1,
+ // "./images/merch2.png",
+ // false,
+ // () => {
+ // closed.set(true);
+ // },
+ // true
+ // );
}
}