diff --git a/frontend/app/components/shared/AnimatedSVG/AnimatedSVG.tsx b/frontend/app/components/shared/AnimatedSVG/AnimatedSVG.tsx
index 65545ca99..0ac1d1d5b 100644
--- a/frontend/app/components/shared/AnimatedSVG/AnimatedSVG.tsx
+++ b/frontend/app/components/shared/AnimatedSVG/AnimatedSVG.tsx
@@ -46,39 +46,39 @@ function AnimatedSVG(props: Props) {
const renderSvg = () => {
switch (name) {
case ICONS.LOADER:
- return ;
+ return
;
case ICONS.DASHBOARD_ICON:
- return ;
+ return
;
case ICONS.EMPTY_STATE:
- return ;
+ return
;
case ICONS.LOGO_SMALL:
return
;
case ICONS.NO_RESULTS:
- return ;
+ return
;
case ICONS.SIGNAL_GREEN:
- return ;
+ return
;
case ICONS.SIGNAL_RED:
- return ;
+ return
;
case ICONS.NO_BOOKMARKS:
- return ;
+ return
;
case ICONS.NO_LIVE_SESSIONS:
- return ;
+ return
;
case ICONS.NO_SESSIONS:
- return ;
+ return
;
case ICONS.NO_SESSIONS_IN_VAULT:
- return ;
+ return
;
case ICONS.NO_WEBHOOKS:
- return ;
+ return
;
case ICONS.NO_METADATA:
- return ;
+ return
;
case ICONS.NO_ISSUES:
- return ;
+ return
;
case ICONS.NO_AUDIT_TRAIL:
- return ;
+ return
;
case ICONS.NO_ANNOUNCEMENTS:
- return ;
+ return
;
case ICONS.NO_ALERTS:
- return ;
+ return
;
default:
return null;
}