We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e1321a commit c809fb4Copy full SHA for c809fb4
website/docs/clients/guides/wait-for-api-key-to-be-valid.mdx
@@ -29,7 +29,7 @@ const { key } = await client.addApiKey({
29
await client.waitForApiKey({ operation: 'add', key });
30
31
// Poll the task status with your options
32
-await client.waitForTask({
+await client.waitForApiKey({
33
operation: 'add',
34
key,
35
// Number of maximum retries to do
website/src/components/TabsLanguage.js
@@ -9,7 +9,7 @@ export const languagesTabValues = [
9
10
export function TabsLanguage(props) {
11
return (
12
- <Tabs groupId="language" defaultValue="java" values={props.values}>
+ <Tabs groupId="language" defaultValue="javascript" values={props.values}>
13
{props.children}
14
</Tabs>
15
);
0 commit comments