fix: remove enforced recording limit (#297)

This commit was merged in pull request #297.
This commit is contained in:
Arjun Patel
2026-06-21 08:33:14 -07:00
committed by GitHub
parent c6ce1bdc65
commit 661577ecd2
2 changed files with 14 additions and 28 deletions
+1 -4
View File
@@ -4,12 +4,9 @@ export const MAX_ATTACHMENT_SIZE_BYTES = 25 * 1024 * 1024;
/** Maximum number of file attachments per particle. */
export const MAX_ATTACHMENTS = 10;
/** Maximum duration for a media (audio/video) recording, in seconds. */
/** Maximum recommended duration for a media (audio/video) recording, in seconds. */
export const RECORDING_MAX_DURATION_SECONDS = 60;
/** When this many seconds or fewer remain, show the red warning state. */
export const RECORDING_WARNING_SECONDS = 10;
export const SUPPORT_EMAIL = '[email protected]';
export const PRIVACY_URL = 'https://flowylabs.ai/llink/privacy';