We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0263bf commit 54c546bCopy full SHA for 54c546b
app/(auth)/sign-up/page.tsx
@@ -2,6 +2,7 @@
2
3
import Link from 'next/link';
4
import { useState } from 'react';
5
+import { Loader } from 'lucide-react';
6
7
import { Button } from '../../_components/ui/button';
8
import {
@@ -15,7 +16,6 @@ import { Input } from '../../_components/ui/input';
15
16
import { Label } from '../../_components/ui/label';
17
import { Separator } from '../../_components/ui/separator';
18
import { signUp } from '../actions';
-import { Loader } from 'lucide-react';
19
20
export default function SignUp() {
21
const [error, setError] = useState<string>();
0 commit comments