Merge branch 'dev' into private-resource-page

This commit is contained in:
miloschwartz
2026-07-07 15:07:35 -04:00
35 changed files with 614 additions and 657 deletions
+5 -9
View File
@@ -150,7 +150,6 @@ export default function PrivateResourcesTable({
const [isRefreshing, startRefreshTransition] = useTransition();
const { isPaidUser } = usePaidStatus();
const isLabelFeatureEnabled = isPaidUser(tierMatrix.labels);
// useEffect(() => {
// const interval = setInterval(() => {
@@ -488,11 +487,8 @@ export default function PrivateResourcesTable({
</div>
);
}
}
];
if (isLabelFeatureEnabled) {
cols.splice(cols.length - 1, 0, {
},
{
id: "labels",
accessorKey: "labels",
header: () => (
@@ -512,11 +508,11 @@ export default function PrivateResourcesTable({
orgId={orgId}
/>
)
});
}
}
];
return cols;
}, [isLabelFeatureEnabled, orgId, t, searchParams]);
}, [orgId, t, searchParams]);
function handleFilterChange(
column: string,