Skip to content

Commit d3439d7

Browse files
committed
Capitalization issue in index
1 parent 593460f commit d3439d7

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

data-browser/src/components/Dropdown/DefaultTrigger.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { IconButton } from '../IconButton';
2+
import { IconButton } from '../IconButton/IconButton';
33
import { DropdownTriggerRenderFunction } from './DropdownTrigger';
44

55
export const buildDefaultTrigger = (

data-browser/src/components/Parent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { constructOpenURL } from '../helpers/navigation';
1313
import { FaEdit, FaSearch } from 'react-icons/fa';
1414
import { Row } from './Row';
1515
import { useQueryScopeHandler } from '../hooks/useQueryScope';
16-
import { IconButton } from './IconButton';
16+
import { IconButton } from './IconButton/IconButton';
1717

1818
type ParentProps = {
1919
resource: Resource;

data-browser/src/components/Searchbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
import { useFocus } from '../helpers/useFocus';
1414
import { useQueryScopeHandler } from '../hooks/useQueryScope';
1515
import { shortcuts } from './HotKeyWrapper';
16-
import { IconButton, IconButtonVariant } from './IconButton';
16+
import { IconButton, IconButtonVariant } from './IconButton/IconButton';
1717

1818
export interface SearchbarProps {
1919
onFocus?: React.FocusEventHandler<HTMLInputElement>;

data-browser/src/components/SideBar/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Logo } from '../Logo';
33
import { SideBarHeader } from './SideBarHeader';
44
import React from 'react';
55
import { FaGithub, FaDiscord, FaBook } from 'react-icons/fa';
6-
import { IconButtonLink } from '../IconButton';
6+
import { IconButtonLink } from '../IconButton/IconButton';
77

88
interface AboutItem {
99
icon: React.ReactNode;

data-browser/src/components/SideBar/ResourceSideBar/FloatingActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FaEllipsisV, FaPlus } from 'react-icons/fa';
44
import styled, { css } from 'styled-components';
55
import { useNewRoute } from '../../../helpers/useNewRoute';
66
import { buildDefaultTrigger } from '../../Dropdown/DefaultTrigger';
7-
import { IconButton } from '../../IconButton';
7+
import { IconButton } from '../../IconButton/IconButton';
88
import ResourceContextMenu from '../../ResourceContextMenu';
99

1010
export interface FloatingActionsProps {

data-browser/src/components/SideBar/SideBarDrive.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { SideBarHeader } from './SideBarHeader';
1919
import { shortcuts } from '../HotKeyWrapper';
2020
import { ErrorLook } from '../ErrorLook';
2121
import { DriveSwitcher } from './DriveSwitcher';
22-
import { IconButton } from '../IconButton';
22+
import { IconButton } from '../IconButton/IconButton';
2323
import { Row } from '../Row';
2424

2525
interface SideBarDriveProps {

data-browser/src/components/forms/Field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
22
import { FaAsterisk, FaInfo, FaTrash } from 'react-icons/fa';
33
import styled from 'styled-components';
44
import { Collapse } from '../Collapse';
5-
import { IconButton, IconButtonVariant } from '../IconButton';
5+
import { IconButton, IconButtonVariant } from '../IconButton/IconButton';
66
import { Row } from '../Row';
77
import {
88
ErrMessage,

0 commit comments

Comments
 (0)