fix(todo-list): update empty list image source to use relative path

This commit is contained in:
chamikaJ
2025-05-16 14:45:47 +05:30
parent 2e985bd051
commit 49bdd00dac

View File

@@ -147,7 +147,7 @@ const TodoList = () => {
<div style={{ maxHeight: 420, overflow: 'auto' }}>
{data?.body.length === 0 ? (
<EmptyListPlaceholder
imageSrc="https://app.worklenz.com/assets/images/empty-box.webp"
imageSrc="/src/assets/images/empty-box.webp"
text={t('home:todoList.noTasks')}
/>
) : (