remove org from get client route

This commit is contained in:
miloschwartz
2025-08-18 12:06:01 -07:00
parent 48963f24df
commit d207318494
4 changed files with 12 additions and 13 deletions

View File

@@ -21,7 +21,7 @@ export default async function SettingsLayout(props: SettingsLayoutProps) {
let client = null;
try {
const res = await internal.get<AxiosResponse<GetClientResponse>>(
`/org/${params.orgId}/client/${params.clientId}`,
`/client/${params.clientId}`,
await authCookieHeader()
);
client = res.data.data;