From 56da3991a5ff1155b728d91c0f1a736de7806186 Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Thu, 29 Jun 2023 21:41:42 +1000 Subject: [PATCH] feat: main --- remix/app/components/Thingtime/Thingtime.tsx | 2 +- remix/app/components/Thingtime/ThingtimeDemo.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/remix/app/components/Thingtime/Thingtime.tsx b/remix/app/components/Thingtime/Thingtime.tsx index 1c8c599..921abd8 100644 --- a/remix/app/components/Thingtime/Thingtime.tsx +++ b/remix/app/components/Thingtime/Thingtime.tsx @@ -189,7 +189,7 @@ export const Thingtime = props => { {...props} className={`thing-${cuid?.current}`} > - {cuid?.current} + {/* {cuid?.current} */} {path} {showContextMenu && contextMenu} {editableValue} diff --git a/remix/app/components/Thingtime/ThingtimeDemo.tsx b/remix/app/components/Thingtime/ThingtimeDemo.tsx index 80a166c..12e9843 100644 --- a/remix/app/components/Thingtime/ThingtimeDemo.tsx +++ b/remix/app/components/Thingtime/ThingtimeDemo.tsx @@ -21,15 +21,15 @@ export const ThingtimeDemo = props => { const [demoThing, setDemoThing] = React.useState(thing) - const debug = { - test: 'hey' - } + // const debug = { + // test: 'hey' + // } - return null + // return null return ( - + ) }