aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-07-26 09:18:34 +0000
committerMohamed Bassem <me@mbassem.com>2025-07-26 10:26:39 +0000
commit5019c8d9d4d97df9e7fb7b67e75d9dd045049861 (patch)
tree55cb01001e7cf4e50233ecdb3001a24c088eb98f /apps/web/components
parent2717d8a74bca22b5438f20b2398a16d7e3832b79 (diff)
downloadkarakeep-5019c8d9d4d97df9e7fb7b67e75d9dd045049861.tar.zst
fix: Drop legacy container notice
Diffstat (limited to 'apps/web/components')
-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;
}