diff --git a/remix/app/components/Thingtime/Thingtime.tsx b/remix/app/components/Thingtime/Thingtime.tsx index b8438b6..2d45aa0 100644 --- a/remix/app/components/Thingtime/Thingtime.tsx +++ b/remix/app/components/Thingtime/Thingtime.tsx @@ -49,8 +49,8 @@ export const Thingtime = (props) => { }, [props?.depth]) const render = React.useMemo(() => { - return props?.render || false - }, [props?.render]) + return !props?.edit || props?.render || false + }, [props?.render, props?.edit]) const width = React.useMemo(() => { if (props?.width) {