Skip to content

Commit

Permalink
clean up examples a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
evanderkoogh committed Sep 16, 2024
1 parent aa45bbf commit 8f29760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/quickstart/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const handler = {
},
}

const config: ResolveConfigFn = (env: Env, _trigger: any) => {
const config: ResolveConfigFn = (env: Env) => {
return {
exporter: {
url: 'https://api.honeycomb.io/v1/traces',
Expand Down
2 changes: 1 addition & 1 deletion examples/worker/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const config: ResolveConfigFn = (env: Env, _trigger) => {
}
}

const doConfig: ResolveConfigFn = (env: Env, _trigger) => {
const doConfig: ResolveConfigFn = (env: Env) => {
return {
exporter: {
url: 'https://api.honeycomb.io/v1/traces',
Expand Down

0 comments on commit 8f29760

Please sign in to comment.