Skip to content

Commit

Permalink
Move dropdown to design system (#1054)
Browse files Browse the repository at this point in the history
Co-authored-by: Chase Fleming <1666730+chasefleming@users.noreply.github.com>
  • Loading branch information
chasefleming and chasefleming authored Dec 17, 2024
1 parent 1b28064 commit b4dff24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/connect-button.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { useCurrentUser } from '@site/src/hooks/use-current-user';
import { Button } from '@site/src/ui/design-system/src/lib/Components/Button';
import Dropdown from '@site/src/components/dropdown';
import { useIsMobile } from '@site/src/hooks/use-is-mobile';
import Dropdown from '@site/src/ui/design-system/src/lib/Components/Dropdown';

const shortenAddress = (address: string, isMobile: boolean) => {
if (!address) return '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ const Dropdown: React.FC<DropdownProps> = ({ buttonLabel, items }) => {
);
};

export default Dropdown;
export default Dropdown;

0 comments on commit b4dff24

Please sign in to comment.