From 386de553a78ace091c6cafe873ade9faac07ba38 Mon Sep 17 00:00:00 2001 From: dgading Date: Wed, 29 Sep 2021 10:54:18 -0400 Subject: [PATCH] Fix hideAuth on API page regression --- package.json | 2 +- src/templates/APIPage/index.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index abc3982f..fc27c15f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@civicactions/cmsds-open-data-components", - "version": "1.0.0", + "version": "1.0.1", "description": "Components for the open data catalog frontend using CMS Design System", "main": "lib/index.js", "scripts": { diff --git a/src/templates/APIPage/index.jsx b/src/templates/APIPage/index.jsx index e3db1930..c519afd3 100644 --- a/src/templates/APIPage/index.jsx +++ b/src/templates/APIPage/index.jsx @@ -12,7 +12,7 @@ const APIPage = ({hideAuth, additionalParams}) => ( ); APIPage.defaultProps = { - hideAuth: false, + hideAuth: true, } export default APIPage;