Skip to content

Commit

Permalink
CORE-4990: add error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ekachxaidze98 committed Sep 16, 2024
1 parent 9d1b663 commit 1c99e0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion templates/deduplication/cards/deduplicationInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const DeduplicationInfoCard = ({ harvestingStatus, harvestingError }) => (
{harvestingError ? (
<div className={styles.errorsWrapper}>
<img className={styles.infoIcon} src={info} alt="riox" />
<p className={styles.errorText}>This data is not available now. </p>
<p className={styles.errorText}>
The data is not available at the moment
</p>
</div>
) : (
<span className={styles.text}>
Expand Down
2 changes: 1 addition & 1 deletion templates/harvesting/cards/harvesting-status-card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const HarvestingStatusCard = ({
<div className={styles.errorsWrapper}>
<img className={styles.infoIcon} src={info} alt="riox" />
<p className={styles.errorText}>
This data is not available now.{' '}
The data is not available at the moment
</p>
</div>
) : (
Expand Down

0 comments on commit 1c99e0b

Please sign in to comment.