Remove dead code around the archived room sublist

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2024-11-25 17:42:02 +00:00
parent a2a066d8b4
commit 877f755114
No known key found for this signature in database
GPG key ID: A2B008A5F49F5D0D
7 changed files with 23 additions and 81 deletions

View file

@ -9,7 +9,6 @@ Please see LICENSE files in the repository root for full details.
export enum DefaultTagID {
Invite = "im.vector.fake.invite",
Untagged = "im.vector.fake.recent", // legacy: used to just be 'recent rooms' but now it's all untagged rooms
Archived = "im.vector.fake.archived",
LowPriority = "m.lowpriority",
Favourite = "m.favourite",
DM = "im.vector.fake.direct",
@ -27,7 +26,6 @@ export const OrderedDefaultTagIDs = [
DefaultTagID.LowPriority,
DefaultTagID.ServerNotice,
DefaultTagID.Suggested,
DefaultTagID.Archived,
];
export type TagID = string | DefaultTagID;