diff --git a/frontend/src/metabase/questions/components/ArchivedItem.jsx b/frontend/src/metabase/questions/components/ArchivedItem.jsx
index cc8954514ebb172b5837c76dde87b66b2bc67af7..bcfe9200e77f7525f589ed616cafb90fa572aeda 100644
--- a/frontend/src/metabase/questions/components/ArchivedItem.jsx
+++ b/frontend/src/metabase/questions/components/ArchivedItem.jsx
@@ -15,7 +15,7 @@ const ArchivedItem = ({ name, type, icon, color = '#DEEAF1', isAdmin = false, on
         />
         { name }
         { isAdmin &&
-            <Tooltip tooltip={`Unarchive this ${type}`}>
+            <Tooltip tooltip={`Unarchive this ${type === "card" ? "question" : type}`}>
                 <Icon
                     onClick={onUnarchive}
                     className="ml-auto cursor-pointer text-brand-hover hover-child"