Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
404answernotfound committed Oct 17, 2024
1 parent 112cc91 commit 6306abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/emails/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const CONFIRMATION_EMAIL = `confirmation`
const APPROVED_EMAIL = `approved`
const REJECTED_EMAIL = `rejected`

const EmailsPage: React.FC<{ children: React.ReactNode }> = ({ children }) => {
const EmailsPage = ({ children }: { children: React.ReactNode }) => {
const [loading, setLoading] = useState(false)
const [error, setError] = useState<string | null>(null)
const [success, setSuccess] = useState<string | null>(null)
Expand Down

0 comments on commit 6306abe

Please sign in to comment.