force deploy

This commit is contained in:
Khalim Conn-Kowlessar 2024-09-09 23:23:02 +01:00
parent 5a1a9ef1ab
commit d1c68fbbfd

View file

@ -55,6 +55,7 @@ export const DocumentsTable: React.FC<Props> = ({
documents,
allowedTypes,
}) => {
// Filter the documents based on the allowed types
const relevantDocuments = documents.filter((doc) =>
allowedTypes.includes(doc.documentType)
);