We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab2cf6a commit 93ce16bCopy full SHA for 93ce16b
src/shared/components/EmptyListComponent/EmptyListComponent.tsx
@@ -14,7 +14,7 @@ type EmptyListComponentProps = {
14
url: string;
15
onClick: () => null;
16
children?: ReactNode;
17
- image?: 'TntNoApplications' | 'TntComponents';
+ image?: 'TntComponents' | 'NoEntries';
18
};
19
20
export const EmptyListComponent = ({
@@ -25,7 +25,7 @@ export const EmptyListComponent = ({
25
url,
26
onClick,
27
children,
28
- image = 'TntNoApplications',
+ image = 'NoEntries',
29
}: EmptyListComponentProps) => {
30
const { t } = useTranslation();
31
const subtitle = subtitleText ? (
0 commit comments