Skip to content

Commit

Permalink
fix(emails): typescript errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tszhong0411 committed Jan 11, 2025
1 parent 045a787 commit f9f0d68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/emails/src/templates/comment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
Text
} from '@react-email/components'

import Footer from '@/components/footer'
import Logo from '@/components/logo'
import Footer from '../components/footer'
import Logo from '../components/logo'

type CommentProps = {
comment: string
Expand Down
4 changes: 2 additions & 2 deletions packages/emails/src/templates/reply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
Text
} from '@react-email/components'

import Footer from '@/components/footer'
import Logo from '@/components/logo'
import Footer from '../components/footer'
import Logo from '../components/logo'

type ReplyProps = {
reply: string
Expand Down
6 changes: 0 additions & 6 deletions packages/emails/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules"],
"extends": "@tszhong0411/tsconfig/react-library.json",
"include": ["**/*.ts", "**/*.tsx", "eslint.config.mjs"]
Expand Down

0 comments on commit f9f0d68

Please sign in to comment.