fix ts errors

This commit is contained in:
Ishaan Jaff 2024-06-03 16:43:38 -07:00
parent 2e51703c0b
commit 877e04c715

View file

@ -825,12 +825,12 @@ const UsagePage: React.FC<UsagePageProps> = ({
allTagNames
.filter((tag) => tag !== "all-tags")
.map((tag: any, index: number) => {
// @ts-ignore
return (
<SelectItem
key={tag}
value={String(tag)}
disabled={true} // @ts-ignore
// @ts-ignore
disabled={true}
>
{tag} (Enterpise only Feature)
</SelectItem>