Skip to content

Commit

Permalink
fix: emptystate title prop
Browse files Browse the repository at this point in the history
  • Loading branch information
amirfefer committed Jan 8, 2024
1 parent 115bf1f commit 321e7fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const ReservationProgress = ({ setLaunchSuccess }) => {
<EmptyState variant="lg">
<EmptyStateHeader
headingLevel="h4"
title={polledReservation?.success ? 'System(s) launched successfully' : 'Launching system(s)'}
titleText={polledReservation?.success ? 'System(s) launched successfully' : 'Launching system(s)'}
icon={
<EmptyStateIcon
color={(polledReservation?.success && '#3E8635') || null}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const missingSourceDescription = (

const LoadingState = () => (
<EmptyState>
<EmptyStateHeader headingLevel="h4" title="Loading available Sources" icon={<EmptyStateIcon icon={Spinner} />} />
<EmptyStateHeader headingLevel="h4" titleText="Loading available Sources" icon={<EmptyStateIcon icon={Spinner} />} />
</EmptyState>
);

Expand Down

0 comments on commit 321e7fa

Please sign in to comment.