Skip to content

Commit 5ea825f

Browse files
authored
Merge pull request #14 from triggerdotdev/dev
Fix for integration webhook url, improved types for Resend integration
2 parents 88306d6 + 2dc72d6 commit 5ea825f

23 files changed

Lines changed: 97 additions & 70 deletions

File tree

.changeset/nine-planets-raise.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/quick-hairs-punch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/docs/images/webhook-url.png

-20.3 KB
Loading

apps/docs/triggers/scheduled.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: "Run a workflow on a recurring schedule"
1111
This job will run every 5 minutes, starting 5 minutes after this code is first run on your server (that includes running locally).
1212

1313
```ts
14-
import { Trigger, schedule } from "@trigger.dev/sdk";
14+
import { Trigger, scheduleEvent } from "@trigger.dev/sdk";
1515

1616
new Trigger({
1717
id: "scheduled-workflow",
@@ -34,7 +34,7 @@ new Trigger({
3434
This job will run at 2:30pm every Monday. You can get help with [CRON syntax](https://crontab.guru/).
3535

3636
```ts
37-
import { Trigger, schedule } from "@trigger.dev/sdk";
37+
import { Trigger, scheduleEvent } from "@trigger.dev/sdk";
3838

3939
new Trigger({
4040
id: "cron-scheduled-workflow",
70 Bytes
Loading
44 Bytes
Loading
11 Bytes
Loading
9 Bytes
Loading
41 KB
Loading

apps/webapp/app/components/CopyTextButton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { CopyText } from "./CopyText";
66
const variantStyle = {
77
slate:
88
"bg-slate-800 text-white rounded px-2 py-1 transition hover:text-slate-700 hover:bg-slate-700 hover:bg-slate-700 hover:text-slate-100 active:bg-slate-800 active:text-slate-300 focus-visible:outline-slate-900",
9-
blue: "bg-indigo-600 rounded px-2 py-1 transition text-white hover:bg-indigo-500 active:bg-indigo-800 active:text-indigo-100 focus-visible:outline-indigo-600",
9+
blue: "text-sm bg-indigo-700 rounded px-3 py-2 transition text-white hover:bg-indigo-600 active:bg-indigo-800 active:text-indigo-100 focus-visible:outline-indigo-600",
1010
darkTransparent:
1111
"bg-black/10 text-slate-900 rounded px-2 py-1 transition hover:bg-blue-50 active:bg-blue-200 active:text-slate-600 focus-visible:outline-white",
1212
lightTransparent:
@@ -37,7 +37,7 @@ export function CopyTextButton({
3737
{copied ? (
3838
<div
3939
className={classNames(
40-
"flex items-center hover:cursor-pointer",
40+
"flex items-center hover:cursor-pointer",
4141
variantStyle[variant]
4242
)}
4343
>
@@ -46,7 +46,7 @@ export function CopyTextButton({
4646
) : (
4747
<div
4848
className={classNames(
49-
"flex items-center hover:cursor-pointer",
49+
"flex items-center hover:cursor-pointer",
5050
variantStyle[variant]
5151
)}
5252
>

0 commit comments

Comments
 (0)