Add button and custom modal flow implemented

This commit is contained in:
adilallo
2026-05-07 21:15:27 -06:00
parent dee2dd800e
commit 26bcd61ea3
43 changed files with 1444 additions and 81 deletions
+8
View File
@@ -0,0 +1,8 @@
/** Multipart field `purpose` for `POST /api/uploads` — keep in sync with server validation. */
export const CREATE_FLOW_UPLOAD_PURPOSES = [
"communityAvatar",
"customMethodAttachment",
] as const;
export type CreateFlowUploadPurpose =
(typeof CREATE_FLOW_UPLOAD_PURPOSES)[number];