Skip to content

Commit

Permalink
fixing type
Browse files Browse the repository at this point in the history
  • Loading branch information
MikesGlitch committed Nov 8, 2023
1 parent f0e6e39 commit e3d4739
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { type CSSProperties, useState } from 'react';
import { type ConnectDragSource } from 'react-dnd';

import ExpandArrow from '../../icons/v0/ExpandArrow';
import CheveronDown from '../../icons/v1/CheveronDown';
Expand All @@ -24,7 +25,7 @@ type SidebarGroupProps = {
editing?: boolean;
collapsed: boolean;
dragPreview?: () => void;
innerRef?: () => void;
innerRef?: ConnectDragSource;
borderColor?: string;
style?: CSSProperties;
onEdit?: (id: string) => void;
Expand Down

0 comments on commit e3d4739

Please sign in to comment.