- Notifications
You must be signed in to change notification settings - Fork907
chore: simplify workspace routing#17981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -8,7 +8,6 @@ import { AnnouncementBanners } from "modules/dashboard/AnnouncementBanners/Annou | ||
import { LicenseBanner } from "modules/dashboard/LicenseBanner/LicenseBanner"; | ||
import { type FC, type HTMLAttributes, Suspense } from "react"; | ||
import { Outlet } from "react-router-dom"; | ||
import { docs } from "utils/docs"; | ||
import { DeploymentBanner } from "./DeploymentBanner/DeploymentBanner"; | ||
import { Navbar } from "./Navbar/Navbar"; | ||
@@ -24,23 +23,10 @@ export const DashboardLayout: FC = () => { | ||
{canViewDeployment && <LicenseBanner />} | ||
<AnnouncementBanners /> | ||
<div className="flex flex-col min-h-full"> | ||
<Navbar /> | ||
<div className="flex flex-col flex-1"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I'm worried that we missed something in the conversion here:
Was that intentional? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Yeap. I did some storybook reviews and QA around and I didn't find anything broken. Maybe it was a leftover? I would appreciate you helping me with some QA 🙏 | ||
<Suspense fallback={<Loader />}> | ||
<Outlet /> | ||
</Suspense> | ||
@@ -111,7 +97,6 @@ export const DashboardFullPage: FC<HTMLAttributes<HTMLDivElement>> = ({ | ||
<div | ||
{...attrs} | ||
css={{ | ||
flex: 1, | ||
display: "flex", | ||
flexDirection: "column", | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -10,7 +10,7 @@ import { useAgentLogs } from "./useAgentLogs"; | ||
* Issue: https://github.com/romgain/jest-websocket-mock/issues/172 | ||
*/ | ||
describe.skip("useAgentLogs", () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Just got the go-ahead to work on fixing this flake today! | ||
afterEach(() => { | ||
WS.clean(); | ||
}); | ||
Uh oh!
There was an error while loading.Please reload this page.