Skip to content

Commit 9f82ae1

Browse files
committed
Adjusted Testing Icon and Prettier Config
Noticed weird print width logic that was causing inconsistencies in sidebar.tsx
1 parent d690a29 commit 9f82ae1

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"semi": true,
55
"singleQuote": true,
66
"trailingComma": "es5",
7-
"printWidth": 100,
7+
"printWidth": 120,
88
"bracketSpacing": true,
99
"arrowParens": "always",
1010
"endOfLine": "lf"

src/components/sidebar/Sidebar.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import SidebarProfile from './SidebarProfile.tsx';
55
import SidebarWorkspace from './SidebarWorkspace.tsx';
66

77
import {
8+
AdjustmentsHorizontalIcon,
89
Bars3Icon,
910
HomeIcon,
1011
StarIcon,
@@ -32,12 +33,8 @@ export default function Sidebar({ collapsed, onToggle }: SidebarProps) {
3233
<SidebarLink label="Home" icon={<HomeIcon />} nav="/" />
3334
<SidebarLink label="Events" icon={<StarIcon />} nav="/events" />
3435
<SidebarLink label="Insights" icon={<CalendarDaysIcon />} nav="/insights" />
35-
<SidebarLink
36-
label="Organizations"
37-
icon={<UserGroupIcon />}
38-
nav="/organizations"
39-
/>
40-
<SidebarLink label="[dev] Testing" icon={<UserGroupIcon />} nav="/testing" />
36+
<SidebarLink label="Organizations" icon={<UserGroupIcon />} nav="/organizations" />
37+
<SidebarLink label="[dev] Testing" icon={<AdjustmentsHorizontalIcon />} nav="/testing" />
4138
</div>
4239
<SidebarWorkspace>
4340
<SidebarProfile

0 commit comments

Comments
 (0)