Skip to content

Commit 05eea09

Browse files
committed
do not use a flex row for the usage available
1 parent a83182a commit 05eea09

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

client/src/features/sessionsV2/session.utils.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -439,21 +439,21 @@ export function UsageAvailable({
439439
}) {
440440
if (usageAvailableHours <= 0)
441441
return (
442-
<div className={cx("d-flex", "align-items-center", "gap-2")}>
443-
<Alarm fontSize={16} className="flex-shrink-0" />
442+
<>
443+
<Alarm fontSize={16} className={cx("flex-shrink-0", "me-2")} />
444444
<span>
445445
Usage quota for this resource pool <strong>has been reached</strong>
446446
</span>
447-
</div>
447+
</>
448448
);
449449

450450
return (
451-
<div className={cx("d-flex", "align-items-center", "gap-2")}>
452-
<Stopwatch fontSize={16} className="flex-shrink-0" />
451+
<>
452+
<Stopwatch fontSize={16} className={cx("flex-shrink-0", "me-2")} />
453453
<span>
454454
<strong>{usageAvailableString(usageAvailableHours, false)}</strong>{" "}
455455
until quota is used
456456
</span>
457-
</div>
457+
</>
458458
);
459459
}

0 commit comments

Comments
 (0)