diff --git a/remix/app/components/Thingtime/Thingtime.tsx b/remix/app/components/Thingtime/Thingtime.tsx index 573a885..ae91a0e 100644 --- a/remix/app/components/Thingtime/Thingtime.tsx +++ b/remix/app/components/Thingtime/Thingtime.tsx @@ -27,7 +27,7 @@ export const Thingtime = (props) => { const { thingtime, setThingtime, loading } = useThingtime() - const [uuid, setUuid] = React.useState() + const [uuid, setUuid] = React.useState(undefined) const [root, setRoot] = React.useState(props?.notRoot ? false : true) @@ -537,7 +537,7 @@ export const Thingtime = (props) => { // minW={depth === 1 ? '120px' : null} paddingY={3} {...(props.chakras || {})} - className={`thing uuid-${uuid?.current}`} + className={`thing uuid-${uuid}`} data-path={props?.path} > {/* {uuid?.current} */} diff --git a/remix/tsconfig.json b/remix/tsconfig.json index 7794110..038640a 100644 --- a/remix/tsconfig.json +++ b/remix/tsconfig.json @@ -9,7 +9,7 @@ "moduleResolution": "node", "resolveJsonModule": true, "target": "ES2019", - "strict": true, + "strict": false, "allowJs": true, "forceConsistentCasingInFileNames": true, "baseUrl": ".",