fix: update empty list image source to use S3 URL for consistency across components

This commit is contained in:
chamiakJ
2025-05-21 15:09:42 +05:30
parent 2bdae400ac
commit 4687478704
5 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ type EmptyListPlaceholderProps = {
};
const EmptyListPlaceholder = ({
imageSrc = '/src/assets/images/empty-box.webp',
imageSrc = 'https://s3.us-west-2.amazonaws.com/worklenz.com/assets/empty-box.webp',
imageHeight = 60,
text,
}: EmptyListPlaceholderProps) => {