aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/web/components/admin/AdminNotices.tsx19
1 files changed, 0 insertions, 19 deletions
diff --git a/apps/web/components/admin/AdminNotices.tsx b/apps/web/components/admin/AdminNotices.tsx
index e40bae19..77b1b481 100644
--- a/apps/web/components/admin/AdminNotices.tsx
+++ b/apps/web/components/admin/AdminNotices.tsx
@@ -19,25 +19,6 @@ function useAdminNotices() {
return [];
}
const ret: AdminNotice[] = [];
- if (data.legacyContainersNotice) {
- ret.push({
- level: "warning",
- message: (
- <p>
- You&apos;re using the legacy docker container images. Those will stop
- getting supported soon. Please follow{" "}
- <a
- href="https://docs.karakeep.app/next/Guides/legacy-container-upgrade"
- className="underline"
- >
- this guide
- </a>{" "}
- to upgrade.
- </p>
- ),
- title: "Legacy Container Images",
- });
- }
return ret;
}