Skip to content

Commit 46aed8d

Browse files
authored
Make email default (#88)
1 parent 73cce8a commit 46aed8d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/ai/ai.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const inputTexts = [
7979
export default function AiPage({ className }: AiPageProps) {
8080
const searchParams = useSearchParams();
8181
const [prompt, setPrompt] = useState("");
82-
const [projectType, setProjectType] = useState<ProjectType>("web");
82+
const [projectType, setProjectType] = useState<ProjectType>("email");
8383
const [loading, setLoading] = useState(false);
8484
const [error, setError] = useState<string | null>(null);
8585
const [hasTrackedInterest, setHasTrackedInterest] = useState(false);

0 commit comments

Comments
 (0)