Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import type { DBChannel } from 'shared/types';
export default ({ archivedAt, ...rest }: DBChannel) => {
if (archivedAt) return true;
return false;
};