Skip to content

Commit

Permalink
fix(access-api): add name to emails and fix miniflare dev
Browse files Browse the repository at this point in the history
closes #60
  • Loading branch information
hugomrdias committed Oct 13, 2022
1 parent bd46d4c commit ad84b46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/access-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"lint": "tsc --build && eslint '**/*.{js,ts}' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"deploy": "wrangler publish",
"dev": "miniflare --watch --debug --wrangler-env dev --env ../../.env",
"dev": "miniflare --modules --watch --debug --wrangler-env dev --env ../../.env",
"build": "scripts/cli.js build",
"check": "tsc --build",
"test": "tsc --build && ava --timeout 10s"
Expand Down
2 changes: 1 addition & 1 deletion packages/access-api/src/utils/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class Email {
method: 'POST',
headers: this.headers,
body: JSON.stringify({
From: 'noreply@dag.house',
From: 'web3.storage <noreply@dag.house>',
To: opts.to,
TemplateAlias: 'welcome',
TemplateModel: {
Expand Down

0 comments on commit ad84b46

Please sign in to comment.