diff --git a/docs/apikeys.mdx b/docs/apikeys.mdx index 5b9eeef1a1..38626760eb 100644 --- a/docs/apikeys.mdx +++ b/docs/apikeys.mdx @@ -39,7 +39,7 @@ The default URL is `https://api.trigger.dev`. If you prefer to manually configure the SDK, you can call the `configure` method: ```ts -import { configure } from "@trigger.dev/sdk/v3"; +import { configure } from "@trigger.dev/sdk"; import { myTask } from "./trigger/myTasks"; configure({ diff --git a/docs/bulk-actions.mdx b/docs/bulk-actions.mdx index 0e2b4468a3..04d0551c93 100644 --- a/docs/bulk-actions.mdx +++ b/docs/bulk-actions.mdx @@ -3,16 +3,10 @@ title: "Bulk actions" description: "Perform actions like replay and cancel on multiple runs at once." --- -Bulk actions allow you to perform operations like replaying or canceling on multiple runs at once. This is especially useful when you need to retry a batch of failed runs with a new version of your code, or when you need to cancel multiple in-progress runs. - -## Bulk replaying - -You can replay multiple runs at once by selecting them from the table on the Runs page using the checkbox on the left hand side of the row. Then click the "Replay runs" button from the bulk action bar that appears at the bottom of the screen. - -This is especially useful if you have lots of failed runs and want to run them all again. To do this, first filter the runs by the status you want, then select all the runs you want to replay and click the "Replay runs" button from the bulk action bar at the bottom of the page. +Bulk actions allow you to perform replaying and canceling on multiple runs at once. This is especially useful when you need to retry a batch of failed runs with a new version of your code, or when you need to cancel multiple in-progress runs.