Skip to content

Commit

Permalink
Fix code structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Tostti committed Jul 20, 2023
1 parent 11ae8c6 commit 5976725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/server/rendering/views/template.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ export const Template: FunctionComponent<Props> = ({
</svg>
);
const openSearchLogoSpinner = (
<img alt="wazuh-animated-logo" src={`${uiPublicUrl}/spinners/light_mode_spinner.gif`}/>
<img alt="wazuh-animated-logo" src={`${uiPublicUrl}/spinners/light_mode_spinner.gif`} />
);
const openSearchLogoSpinnerDark = (
<img alt="wazuh-animated-logo" src={`${uiPublicUrl}/spinners/dark_mode_spinner.gif`}/>
<img alt="wazuh-animated-logo" src={`${uiPublicUrl}/spinners/dark_mode_spinner.gif`} />
);

const loadingLogoDefault = injectedMetadata.branding.loadingLogo?.defaultUrl;
Expand Down

0 comments on commit 5976725

Please sign in to comment.