Skip to content

Commit 3623945

Browse files
Updating refs to oauth_apps
1 parent 944cba7 commit 3623945

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/connect-react/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ To connect to an OAuth app using your own OAuth client, you can specify custom O
165165
166166
```tsx
167167
const oauthAppConfig = {
168-
github: "oa_abc123",
169-
google_sheets: "oa_def456",
170-
slack: "oa_ghi789",
168+
github: "oa_xxxxxxx",
169+
google_sheets: "oa_xxxxxxx",
170+
slack: "oa_xxxxxxx",
171171
};
172172
173173
<ComponentFormContainer

packages/connect-react/src/components/ComponentForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type ComponentFormProps<T extends ConfigurableProps, U = ConfiguredProps<
3232
/**
3333
* OAuth app ID configuration for specific apps.
3434
* Maps app name slugs to their corresponding OAuth app IDs.
35-
* Example: { 'github': 'oauth_app_123', 'google_sheets': 'oauth_app_456' }
35+
* Example: { 'github': 'oa_xxxxxxx', 'google_sheets': 'oa_xxxxxxx' }
3636
*/
3737
oauthAppConfig?: Record<string, string>;
3838
} & (

0 commit comments

Comments
 (0)