Skip to content

Commit

Permalink
[linting] 🤖✨
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesh-gupta committed Oct 10, 2023
1 parent 6aea8a4 commit 8783d94
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 55 deletions.
4 changes: 3 additions & 1 deletion app/(root)/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import clsx from 'clsx';
import React, { useState } from 'react';

const ContactPage = () => {
const [isSubmitted, setIsSubmitted] = useState(localStorage?.getItem('isSubmitted') === 'true' ? true : false);
const [isSubmitted, setIsSubmitted] = useState(
localStorage?.getItem('isSubmitted') === 'true' ? true : false
);

const [formData, setFormData] = useState({
name: '',
Expand Down
112 changes: 58 additions & 54 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8783d94

Please # to comment.