Wizard: remove no repos selected message

This commit is contained in:
Dominik Vagner 2024-09-27 14:12:53 +02:00 committed by Klara Simickova
parent 13892718cd
commit 2ef545111f
2 changed files with 2 additions and 4 deletions

View file

@ -466,8 +466,6 @@ export const ContentList = ({
const snapshottingText = useMemo(() => {
switch (true) {
case noRepositoriesSelected:
return 'No repositories selected';
case isLoading:
return '';
case useLatest:
@ -477,7 +475,7 @@ export const ContentList = ({
default:
return '';
}
}, [noRepositoriesSelected, isLoading, useLatest, snapshotDate]);
}, [isLoading, useLatest, snapshotDate]);
return (
<>