8000 fix: fix loading states and permissions checks in organization settings by aslilac · Pull Request #16465 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: fix loading states and permissions checks in organization settings #16465

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Feb 19, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next 8000 Next commit
:|
  • Loading branch information
aslilac committed Feb 18, 2025
commit 41ff221676dc8c1d6c6b0804c239fb81a6b741e6
4 changes: 2 additions & 2 deletions site/src/modules/management/OrganizationSettingsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ import {
BreadcrumbSeparator,
} from "components/Breadcrumb/Breadcrumb";
import { Loader } from "components/Loader/Loader";
import { Paywall } from "components/Paywall/Paywall";
import { useDashboard } from "modules/dashboard/useDashboard";
import NotFoundPage from "pages/404Page/404Page";
import { type FC, Suspense, createContext, useContext } from "react";
import { useQuery } from "react-query";
import { Outlet, useParams } from "react-router-dom";
import { docs } from "utils/docs";
import {
type OrganizationPermissions,
canViewOrganization,
} from "./organizationPermissions";
import { Paywall } from "components/Paywall/Paywall";
import { docs } from "utils/docs";

export const OrganizationSettingsContext = createContext<
OrganizationSettingsValue | undefined
Expand Down
Loading
0