Skip to content

Commit

Permalink
chore: reorganized folder structure for tab icons
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Sep 15, 2024
1 parent ea91117 commit 50d93bc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';
import { IconAlertTriangle } from '@tabler/icons';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import CloseTabIcon from './CloseTabIcon';

const RequestTabNotFound = ({ handleCloseClick }) => {
const [showErrorMessage, setShowErrorMessage] = useState(false);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import CloseTabIcon from './CloseTabIcon';
import { IconVariable, IconSettings, IconRun, IconFolder, IconShieldLock } from '@tabler/icons';

const SpecialTab = ({ handleCloseClick, type, tabName }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import StyledWrapper from './StyledWrapper';
import Dropdown from 'components/Dropdown';
import CloneCollectionItem from 'components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index';
import NewRequest from 'components/Sidebar/NewRequest/index';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import DraftTabIcon from './CloseTab/DraftTabIcon';
import CloseTabIcon from './CloseTabIcon';
import DraftTabIcon from './DraftTabIcon';

const RequestTab = ({ tab, collection, tabIndex, collectionRequestTabs, folderUid }) => {
const dispatch = useDispatch();
Expand Down

0 comments on commit 50d93bc

Please sign in to comment.