Skip to content

Commit 5a94207

Browse files
Send org id through to org settings request
1 parent b7977ef commit 5a94207

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/plus/gk/account/organizationService.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,11 @@ export class OrganizationService implements Disposable {
209209
if (id == null) return undefined;
210210

211211
if (!this._organizationSettings?.has(id) || options?.force === true) {
212-
const rsp = await this.connection.fetchApi(`v1/organizations/settings`, { method: 'GET' });
212+
const rsp = await this.connection.fetchApi(
213+
`v1/organizations/settings`,
214+
{ method: 'GET' },
215+
{ organizationId: id },
216+
);
213217
if (!rsp.ok) {
214218
Logger.error(
215219
'',

0 commit comments

Comments
 (0)