diff --git a/packages/tldraw/src/lib/ui/components/Toolbar/Toolbar.tsx b/packages/tldraw/src/lib/ui/components/Toolbar/Toolbar.tsx index ee720daeb..d56d3bf98 100644 --- a/packages/tldraw/src/lib/ui/components/Toolbar/Toolbar.tsx +++ b/packages/tldraw/src/lib/ui/components/Toolbar/Toolbar.tsx @@ -31,13 +31,11 @@ export const Toolbar = memo(function Toolbar() { const activeToolId = useValue('current tool id', () => editor.currentToolId, [editor]) - const isHandTool = activeToolId === 'hand' const geoState = useValue('geo', () => editor.sharedStyles.getAsKnownValue(GeoShapeGeoStyle), [ editor, ]) const showEditingTools = !isReadonly - const showExtraActions = !(isReadonly || isHandTool) const getTitle = (item: TLUiToolItem) => item.label ? `${msg(item.label)} ${item.kbd ? kbdStr(item.kbd) : ''}` : '' @@ -110,13 +108,9 @@ export const Toolbar = memo(function Toolbar() {