Skip to content

Commit

Permalink
Swap sidebar icon import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sg committed Jan 2, 2025
1 parent 502689c commit 9357b6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/app/src/components/LeftSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { css } from '@emotion/react';
import { type FC } from 'react';
import { useAtom, useAtomValue } from 'jotai';
import { projectState } from '../state/savedGraphs.js';
import ExpandLeftIcon from 'majesticons/line/menu-expand-right-line.svg?react';
import ExpandRightIcon from 'majesticons/line/menu-expand-left-line.svg?react';
import ExpandLeftIcon from 'majesticons/line/menu-expand-left-line.svg?react';
import ExpandRightIcon from 'majesticons/line/menu-expand-right-line.svg?react';
import { type GraphId } from '@ironclad/rivet-core';
import { sidebarOpenState } from '../state/graphBuilder.js';
import Tabs, { Tab, TabList, TabPanel } from '@atlaskit/tabs';
Expand Down Expand Up @@ -83,7 +83,7 @@ export const LeftSidebar: FC<{
key={project.metadata.id}
>
<div className="toggle-tab" onClick={() => setSidebarOpen(!sidebarOpen)}>
{!sidebarOpen ? <ExpandLeftIcon /> : <ExpandRightIcon />}
{sidebarOpen ? <ExpandLeftIcon /> : <ExpandRightIcon />}
</div>
<div className="tabs">
<Tabs id="sidebar-tabs">
Expand Down

0 comments on commit 9357b6a

Please sign in to comment.