From ef72f27a3ae04c0eb0eb2e161ac6cfad0ccb8b3e Mon Sep 17 00:00:00 2001 From: Daniel Mundra Date: Mon, 28 Feb 2022 11:07:05 -0800 Subject: [PATCH] Replaced null with default WCAG 2.0 508 catalog. (#54) --- src/utils/getCatalogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/getCatalogs.js b/src/utils/getCatalogs.js index 8e9975b..8120b43 100644 --- a/src/utils/getCatalogs.js +++ b/src/utils/getCatalogs.js @@ -13,7 +13,7 @@ export function getCatalog(catalogName) { } else if (catalogName == wcag21508catalogName) { return wcag21508catalog; } - return null; + return wcag20508catalog; } export function getListOfCatalogs() {