Skip to content

Commit c809fb4

Browse files
committed
doc fix
1 parent 8e1321a commit c809fb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

website/docs/clients/guides/wait-for-api-key-to-be-valid.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const { key } = await client.addApiKey({
2929
await client.waitForApiKey({ operation: 'add', key });
3030

3131
// Poll the task status with your options
32-
await client.waitForTask({
32+
await client.waitForApiKey({
3333
operation: 'add',
3434
key,
3535
// Number of maximum retries to do

website/src/components/TabsLanguage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const languagesTabValues = [
99

1010
export function TabsLanguage(props) {
1111
return (
12-
<Tabs groupId="language" defaultValue="java" values={props.values}>
12+
<Tabs groupId="language" defaultValue="javascript" values={props.values}>
1313
{props.children}
1414
</Tabs>
1515
);

0 commit comments

Comments
 (0)