diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-30 11:31:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 11:31:32 -0400 |
commit | 452f3fb44838c367f40e8aa57db2e274a357afd2 (patch) | |
tree | 4a3487413b8773f120271380e5c2902dadf690d8 /src/constants | |
parent | eabc3c82f0ac2ffa2dfb26ee7bc792fd6a48491a (diff) | |
parent | e50a0321d73df5169b79dded7a57cfa3a9b62adc (diff) |
Merge pull request #539 from IvanIFChen/tma1035-bugfix-camera-timer-animation
[TMA-1035] [BUGFIX] Record Video Animation Issues
Diffstat (limited to 'src/constants')
-rw-r--r-- | src/constants/constants.ts | 2 | ||||
-rw-r--r-- | src/constants/strings.ts | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 476e7af4..d25a5953 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -246,3 +246,5 @@ export const SETTINGS_DATA = { }, ], }; + +export const MAX_VIDEO_RECORDING_DURATION = 60; diff --git a/src/constants/strings.ts b/src/constants/strings.ts index 450d7e5c..47ad2464 100644 --- a/src/constants/strings.ts +++ b/src/constants/strings.ts @@ -56,6 +56,7 @@ export const ERROR_UNABLE_TO_FIND_PROFILE = 'We were unable to find this profile export const ERROR_UNABLE_TO_VIEW_PROFILE = 'Unable to view this profile'; export const ERROR_UPLOAD = 'An error occurred while uploading. Please try again!'; export const ERROR_UPLOAD_BADGES = 'Unable to upload your badges. Please retry!'; +export const ERROR_UPLOAD_EXCEED_MAX_VIDEO_DURATION = 'Video can\'t be longer than 60 seconds!'; export const ERROR_UPLOAD_LARGE_PROFILE_PIC = "Can't have the first image seen on the profile be blank, please upload a large picture"; export const ERROR_UPLOAD_MOMENT = 'Unable to upload moment. Please retry'; export const ERROR_UPLOAD_SMALL_PROFILE_PIC = "Can't have a profile without a pic to represent you, please upload a small profile picture"; |