Skip to content

Commit e5dd377

Browse files
committed
chore: more clean up
1 parent fca8151 commit e5dd377

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/features/transactions/pages/group-page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ export function GroupPage() {
213213
{account}
214214
</div>
215215
))}
216+
{/* The below div is for drawing the background dash lines */}
216217
<div className={cn('absolute right-0 -z-10')} style={{ top: `${graphConfig.rowHeight}px` }}>
217218
<div>
218219
<div className={cn('p-0')}></div>
@@ -229,7 +230,7 @@ export function GroupPage() {
229230
>
230231
{accounts.map((_, index) => (
231232
<div key={index} className={cn('flex justify-center')}>
232-
<div className={cn('border-muted border-l-2 h-full border-dashed')}></div>
233+
<div className={cn('border-muted h-full border-dashed')} style={{ borderLeftWidth: graphConfig.lineWidth }}></div>
233234
</div>
234235
))}
235236
</div>

0 commit comments

Comments
 (0)