Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
defaulting bottomsheet to 585px tall, which includes variant tray, an…
…d suggestions
  • Loading branch information
jakedahn committed Mar 3, 2025
commit 0696c094e64d81b85fc3b0b65023ddcb38af35c1
2 changes: 1 addition & 1 deletion typescript/packages/jumble/src/views/CharmDetailView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const useCharmOperationContext = () => {
// =================== Custom Hooks ===================

// Hook for managing bottom sheet functionality
function useBottomSheet(initialHeight = 420) {
function useBottomSheet(initialHeight = 585) {
const [sheetHeight, setSheetHeight] = useState<number>(initialHeight);
const [isResizing, setIsResizing] = useState(false);
const resizeStartY = useRef<number | null>(null);
Expand Down