diff --git a/frontend/src/components/updates/update.tsx b/frontend/src/components/updates/update.tsx
deleted file mode 100644
index 14263fca4..000000000
--- a/frontend/src/components/updates/update.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import { version_to_string } from "@util/helpers";
-import { Calendar, User } from "lucide-react";
-import { UpdateDetails, UpdateUser } from "./details";
-import { Update } from "@monitor/client/dist/types";
-
-const fmt_date = (d: Date) =>
- `${d.getDate()}/${d.getMonth() + 1} @ ${d.getHours()}:${d.getMinutes()}`;
-
-export const SingleUpdate = ({ update }: { update: Update }) => (
-
-
-
-
-
-
- {update.end_ts ? fmt_date(new Date(update.end_ts)) : "ongoing"}
-
-
-
-
- {update.operation.match(/[A-Z][a-z]+|[0-9]+/g)?.join(" ")}{" "}
- {version_to_string(update.version)}
-
-
-
-
-
-
-
-
-
-);