Skip to content

Commit

Permalink
[TOOL-3572] Dashboard:Fix theming issue in engine pages
Browse files Browse the repository at this point in the history
  • Loading branch information
MananTank committed Mar 1, 2025
1 parent 80ae08b commit 9c91897
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
BreadcrumbSeparator,
} from "@/components/ui/breadcrumb";
import type { EngineInstance } from "@3rdweb-sdk/react/hooks/useEngine";
import { ChakraProvider } from "@chakra-ui/react";
import { ChakraProviderSetup } from "../../../../../../../../@/components/ChakraProviderSetup";
import { getValidAccount } from "../../../../../../../account/settings/getAccount";
import { getAuthToken } from "../../../../../../../api/lib/getAuthToken";
import { loginRedirect } from "../../../../../../../login/loginRedirect";
Expand Down Expand Up @@ -54,7 +54,7 @@ export default async function Layout(props: {
}

return (
<ChakraProvider>
<ChakraProviderSetup>
<div className="flex grow flex-col">
<EngineInstanceHeader
instance={instance}
Expand All @@ -77,7 +77,7 @@ export default async function Layout(props: {
</EnsureEnginePermission>
</EngineSidebarLayout>
</div>
</ChakraProvider>
</ChakraProviderSetup>
);
}

Expand All @@ -92,7 +92,7 @@ function EngineInstanceHeader(props: {
: instance.url;

return (
<div className="border-b">
<div className="border-border border-b">
<div className="container py-6">
<Breadcrumb>
<BreadcrumbList>
Expand Down

0 comments on commit 9c91897

Please sign in to comment.