Theme aware

This commit is contained in:
Manav Rathi 2025-01-17 16:02:32 +05:30
parent 2cdc14aed3
commit b5fd289ae9
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
import { EnteLogo } from "@/base/components/EnteLogo";
import { EnteLogo, EnteLogoSVG } from "@/base/components/EnteLogo";
import { CenteredFlex, FlexWrapper } from "@ente/shared/components/Container";
import { styled } from "@mui/material";
import React from "react";
@ -53,7 +53,7 @@ const NavbarBaseNormalFlow = styled("div")(
*/
export const AppNavbarNormalFlow: React.FC = () => (
<NavbarBaseNormalFlow>
<EnteLogo />
<EnteLogoSVG />
</NavbarBaseNormalFlow>
);