From 50bd60290139e9545506f78fdf4c5eaa89f676c9 Mon Sep 17 00:00:00 2001 From: Agnieszka Besz Date: Thu, 28 Nov 2024 17:49:40 +0000 Subject: [PATCH] Removed check for Withdrawn reason --- .site-generator/index.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.site-generator/index.js b/.site-generator/index.js index 00a57127..895fb778 100644 --- a/.site-generator/index.js +++ b/.site-generator/index.js @@ -58,11 +58,4 @@ function checkAdrStatus(page) { page.matterfront.adr + " is marked as `Deprecated` but has no `deprecated-reason`" ) - - if (page.matterfront.status === "Withdrawn" && !page.matterfront["withdrawal-reason"]) - throw new Error( - "ADR-" + - page.matterfront.adr + - " is marked as `Withdrawn` but has no `withdrawal-reason`" - ) }