diff --git a/src/deskstar-frontend/pages/resources/restoration.tsx b/src/deskstar-frontend/pages/resources/restoration.tsx
index e998b6e..3b51e47 100644
--- a/src/deskstar-frontend/pages/resources/restoration.tsx
+++ b/src/deskstar-frontend/pages/resources/restoration.tsx
@@ -233,50 +233,74 @@ export default function DeletedRessourceOverview({
{selectedResourceOption === "Desk types" && (
<>
-
+ {deskTypes.length === 0 && (
+
No archived Desk Types
+ )}
+ {deskTypes.length > 0 && (
+
+ )}
>
)}
{selectedResourceOption === "Desks" && (
<>
-
+ {desks.length === 0 && (
+
No archived Desks
+ )}
+ {desks.length > 0 && (
+
+ )}
>
)}
{selectedResourceOption === "Rooms" && (
<>
-
+ {rooms.length === 0 && (
+
No archived Rooms
+ )}
+ {rooms.length > 0 && (
+
+ )}
>
)}
{selectedResourceOption === "Floors" && (
<>
-
+ {floors.length === 0 && (
+
No archived Floors
+ )}
+ {floors.length > 0 && (
+
+ )}
>
)}
{selectedResourceOption === "Buildings" && (
<>
-
+ {buildings.length === 0 && (
+
No archived Buildings
+ )}
+ {buildings.length > 0 && (
+
+ )}
>
)}
>
);
}
-//TODO: delete this when using backend data instead of mockup
export const getServerSideProps: GetServerSideProps = async (context) => {
const session = await unstable_getServerSession(
context.req,