Skip to content

Commit

Permalink
Update Code
Browse files Browse the repository at this point in the history
  • Loading branch information
aryasoni98 committed Feb 17, 2024
1 parent d9fabda commit 3cb9b1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,5 @@ Thumbs.db
/tmp

# Local Netlify folder
.netlify
.netlify
.husky
2 changes: 1 addition & 1 deletion src/app/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dynamic from 'next/dynamic'

const SignUpPage = dynamic(() => import('@/pages/signupPage'), { ssr: false });
const SignUpPage = dynamic(() => import('@/pages/signupPage'), { ssr: false })

const Signup = () => {
return <SignUpPage />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/signupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import dynamic from 'next/dynamic'
const CodeEditor = dynamic(
() => import('@/components/code_editor/codeEditor'),
{ ssr: false },
);
)

const Icons = {
spinner: Loader2,
Expand Down Expand Up @@ -134,7 +134,7 @@ const SignUp = () => {
password: values.password,
})
}

useEffect(() => {
const checkAuth = async () => {
try {
Expand Down

0 comments on commit 3cb9b1d

Please sign in to comment.