From 6500030a5749792ea465c8114133cae17f5476a8 Mon Sep 17 00:00:00 2001 From: Joe Buono Date: Tue, 19 Apr 2022 17:28:35 -0500 Subject: [PATCH 1/3] temporarily remove Theme tab from docs demos --- docs/src/components/Demo.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/src/components/Demo.tsx b/docs/src/components/Demo.tsx index f5303977580..3c41f5a8e82 100644 --- a/docs/src/components/Demo.tsx +++ b/docs/src/components/Demo.tsx @@ -48,7 +48,10 @@ export const Demo = ({ {propControls} - {themeControls ?? {themeControls}} + {/* Temporarily removing the Theme tab until we figure out a way + to let customers dynamically edit a theme object in the demos + */} + {/* {themeControls ?? {themeControls}} */} Date: Tue, 19 Apr 2022 18:45:53 -0400 Subject: [PATCH 2/3] removed nullish coalescing operator --- docs/src/components/Demo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/components/Demo.tsx b/docs/src/components/Demo.tsx index 3c41f5a8e82..0607f2ebc9b 100644 --- a/docs/src/components/Demo.tsx +++ b/docs/src/components/Demo.tsx @@ -51,7 +51,7 @@ export const Demo = ({ {/* Temporarily removing the Theme tab until we figure out a way to let customers dynamically edit a theme object in the demos */} - {/* {themeControls ?? {themeControls}} */} + {/* {themeControls ? {themeControls}} : null */} Date: Tue, 19 Apr 2022 18:47:00 -0400 Subject: [PATCH 3/3] small typo --- docs/src/components/Demo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/components/Demo.tsx b/docs/src/components/Demo.tsx index 0607f2ebc9b..7e8db02e9be 100644 --- a/docs/src/components/Demo.tsx +++ b/docs/src/components/Demo.tsx @@ -51,7 +51,7 @@ export const Demo = ({ {/* Temporarily removing the Theme tab until we figure out a way to let customers dynamically edit a theme object in the demos */} - {/* {themeControls ? {themeControls}} : null */} + {/* {themeControls ? {themeControls} : null} */}