refactor: revert the org level enum to only types that existed before

This commit is contained in:
lemmyMwaura
2024-07-29 20:04:58 +03:00
parent b740e8c900
commit 3f3c0aab0f

View File

@@ -1,9 +1,7 @@
export enum TabSections {
Member = "members",
Roles = "roles",
Groups = "groups",
Identities = "identities",
ServiceTokens = "service-tokens"
Identities = "identities"
}
export const isTabSection = (value: string): value is TabSections => {