Skip to content

Commit 93ce16b

Browse files
authored
chore: Change illustration for empty tables (#4491)
* chore: change illustration for empty tables * fix: illustration name type * chore: simplify image type
1 parent ab2cf6a commit 93ce16b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/components/EmptyListComponent/EmptyListComponent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type EmptyListComponentProps = {
1414
url: string;
1515
onClick: () => null;
1616
children?: ReactNode;
17-
image?: 'TntNoApplications' | 'TntComponents';
17+
image?: 'TntComponents' | 'NoEntries';
1818
};
1919

2020
export const EmptyListComponent = ({
@@ -25,7 +25,7 @@ export const EmptyListComponent = ({
2525
url,
2626
onClick,
2727
children,
28-
image = 'TntNoApplications',
28+
image = 'NoEntries',
2929
}: EmptyListComponentProps) => {
3030
const { t } = useTranslation();
3131
const subtitle = subtitleText ? (

0 commit comments

Comments
 (0)