Skip to content

Commit

Permalink
WIP DO NOT MERGE - Testing appointment list refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
JunTaoLuo committed Jan 31, 2025
1 parent 5f5e3cd commit 86c3259
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/applications/vaos/components/AppointmentColumn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export default function AppointmentColumn({
className={getClasses({ className, first, padding, last, size })}
style={{ ...defaultStyles.canceled, ...style }}
{...props}
role="cell"
>
{children}
</div>
Expand Down
19 changes: 7 additions & 12 deletions src/applications/vaos/components/AppointmentRow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,13 @@ export default function AppointmentRow({
...props
}) {
return (
<div role="grid">
<div role="rowgroup">
<div
id={id}
className={`vads-u-display--flex vads-u-flex-direction--column ${className}`}
style={{ ...style }}
{...props}
role="row"
>
{children}
</div>
</div>
<div
id={id}
className={`vads-u-display--flex vads-u-flex-direction--column ${className}`}
style={{ ...style }}
{...props}
>
{children}
</div>
);
}
Expand Down

0 comments on commit 86c3259

Please sign in to comment.