add user profile, profile vibe and trip vibe and social signal

This commit is contained in:
2026-05-08 19:20:27 +07:00
parent 3228ef712f
commit 7f419638b5
39 changed files with 1361 additions and 192 deletions
+1
View File
@@ -28,6 +28,7 @@ export async function createTripAction(formData: FormData) {
endDate: (formData.get("endDate") as string) || undefined,
maxParticipants: formData.get("maxParticipants") as string,
price: formData.get("price") as string,
vibe: formData.get("vibe"),
};
const result = createTripSchema.safeParse(raw);